[wip] Add bfabric-cli dataset
#685
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, stable] | |
pull_request: | |
branches: [main, stable] | |
workflow_dispatch: | |
jobs: | |
unit_tests: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
- name: Install nox | |
run: pip install nox uv | |
- name: Run checks | |
run: nox | |
code_style: | |
name: Code Style | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
- name: Install nox | |
run: pip install nox uv | |
- name: Check code with ruff | |
run: nox -s code_style | |
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 . | |
name: List TODOs |