v0.4.3 #123
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: Tests | |
on: | |
push: | |
branches: | |
- main | |
- "[0-9].[0-9]" | |
pull_request: | |
branches: ["main"] | |
jobs: | |
tests: | |
name: "Python ${{ matrix.python-version }}" | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] | |
steps: | |
- uses: "actions/checkout@v3" | |
- uses: "actions/setup-python@v4" | |
with: | |
python-version: "${{ matrix.python-version }}" | |
- name: Install Poetry | |
uses: abatilo/actions-poetry@v2 | |
with: | |
version: 1.3 | |
- name: Setup Poetry | |
run: "poetry config virtualenvs.in-project true" | |
- name: Cache Deps | |
uses: actions/cache@v2 | |
id: cached-poetry-dependencies | |
with: | |
path: .venv | |
key: python-${{ matrix.python-version }}-pydeps-${{ hashFiles('**/poetry.lock') }} | |
- name: "Install Dependencies" | |
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' | |
run: "poetry install --no-interaction --no-root" | |
- name: "Run Lint" | |
run: "make lint" | |
- name: "Run Tests" | |
env: | |
CI: "TRUE" | |
run: "make test" |