Bump version 0.4.0a0 → 0.4.0 #98
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: Checks | |
on: | |
push: | |
branches: | |
- "*" | |
tags: | |
- "v[0-9]+.[0-9]+.[0-9]+*" | |
jobs: | |
test-image: | |
name: Type checking, linting, tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.REPO_TOKEN }} | |
submodules: true | |
- name: Setup python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: | | |
3.11 | |
3.10 | |
3.9 | |
- name: Install python dependencies | |
run: pip install -r requirements/dev.txt | |
- name: Run type checking | |
run: make mypy | |
- name: Run linting | |
run: make lint | |
- name: Run tests | |
run: make test |