Tests and linting #1222
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will run all tests as well as pre-commit | |
name: Tests and linting | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
schedule: | |
- cron: "0 0 */2 * *" | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
- run: pre-commit run --all | |
demo: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
- run: python demo.py --headless | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
test-groups: | |
[ | |
"test/test_[a-e]*", | |
"test/test_[f-h]*", | |
"test/test_[i-o,q-r,t-z]*", | |
"test/test_[p]*", | |
"test/test_[s]*", | |
"test/storage/*", | |
"test/extension/*", | |
] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
- run: ./scripts/ci.sh | |
env: | |
DISPLAY: ":99.0" | |
TESTS: ${{ matrix.test-groups }} | |
- name: Test Report | |
uses: dorny/test-reporter@v1 | |
continue-on-error: true | |
if: always() # run this step even if previous step failed | |
with: | |
name: ${{matrix.test-groups}} # Name of the check run which will be created | |
path: junit-report.xml # Path to test results | |
reporter: java-junit # Format of test results |