Update changelog #1
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: Run checks & tests | |
on: | |
push: | |
branches: | |
- "master" | |
- "main" | |
- "test" | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: .github/workflows/install_deps.sh | |
- name: Build | |
run: make | |
- name: Run checks | |
run: SKIP=pip-compile pre-commit run --all-files | |
- name: Run tests | |
run: make test |