mirror of
https://github.com/frej/fast-export.git
synced 2026-01-14 10:12:05 +01:00
32 lines
593 B
YAML
32 lines
593 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
# The branches below must be a subset of the branches above
|
|
branches: [master]
|
|
|
|
jobs:
|
|
test:
|
|
name: Run test suite
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 1
|
|
submodules: 'recursive'
|
|
|
|
- name: Run tests
|
|
run: make -C t
|
|
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@v2
|
|
with:
|
|
languages: python
|
|
|
|
- name: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@v2
|