maybe using multiprocessing will fix the problem #113
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
name: PR Checks | |
on: | |
push: | |
branches: [main, dev] | |
pull_request: | |
branches: [main, dev] | |
workflow_dispatch: | |
jobs: | |
unit_tests: | |
name: PR Checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-depiction | |
with: | |
python-version: 3.12 | |
- name: Run unit tests | |
run: cd tests && python -m unittest discover -s ./unit -p 'test_*.py' | |
- name: Code style | |
run: ruff check || true | |
if: success() || failure() | |
#code_style: | |
# name: Code Style | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - uses: ./.github/actions/setup-depiction | |
# with: | |
# python-version: 3.11 | |
# - name: Check code with ruff | |
# run: | |
# ruff check || true |