amdsmi
bindings integration
#204
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: (Zeus) Check format, lint, and test | |
on: | |
pull_request: | |
paths: | |
- '.github/workflows/zeus_fmt_lint_test.yaml' | |
- 'zeus/**' | |
- 'tests/**' | |
- 'capriccio/*.py' | |
- 'examples/**' | |
- 'setup.py' | |
- 'scripts/lint.sh' | |
- 'pyproject.toml' | |
push: | |
paths: | |
- '.github/workflows/zeus_fmt_lint_test.yaml' | |
- 'zeus/**' | |
- 'tests/**' | |
- 'capriccio/*.py' | |
- 'examples/**' | |
- 'setup.py' | |
- 'scripts/lint.sh' | |
- 'pyproject.toml' | |
# Jobs initiated by previous pushes get cancelled by a new push. | |
concurrency: | |
group: ${{ github.ref }}-zeus-lint-and-test | |
cancel-in-progress: true | |
jobs: | |
format_lint_test: | |
if: ${{ github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
cache: 'pip' | |
- name: Install Zeus and lint tools | |
run: pip install -U pip && pip install ".[dev]" | |
- name: Check format and lint | |
run: bash scripts/lint.sh | |
- name: Run tests | |
run: python -m pytest |