chore: update dependencies #87
Workflow file for this run
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: Python CI | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- '**' | ||
pull_request: | ||
branches: | ||
- main | ||
- '**' | ||
jobs: | ||
build: | ||
name: tests | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
Check failure on line 18 in .github/workflows/ci.yml GitHub Actions / Python CIInvalid workflow file
|
||
python-version: ["3.8", "3.11", "3.12"] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python 3.8 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.8 | ||
- name: Install dependencies | ||
run: | | ||
make requirements | ||
- name: Run quality suite | ||
run: | | ||
make quality | ||
- name: Run unittest suite | ||
run: | | ||
make test |