update README.md #142
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-bfabric-2 ] | |
pull_request: | |
branches: [ main, dev-bfabric-2 ] | |
workflow_dispatch: | |
jobs: | |
unit_tests: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-bfabricpy | |
with: | |
python-version: 3.9 | |
- name: Run unit tests | |
# Note: we use cd to double-check that the installation actually worked | |
run: cd bfabric/tests && python -m unittest discover -s ./unit -p 'test_*.py' | |
code_style: | |
name: Code Style | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-bfabricpy | |
with: | |
python-version: 3.9 | |
- name: Check code with ruff | |
run: | |
ruff bfabric || true | |
list_todos: | |
name: List TODOs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sudo apt-get install -y ripgrep | |
name: Install ripgrep | |
- run: | |
rg -n TODO bfabric | |
name: List TODOs | |
license_check: | |
name: License Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-bfabricpy | |
with: | |
python-version: 3.9 | |
- name: Check licenses | |
run: licensecheck |