Skip to content

Update license and fix pyproject.toml #30

Update license and fix pyproject.toml

Update license and fix pyproject.toml #30

Workflow file for this run

name: Tests
on:
push:
branches:
- master
- test
paths-ignore:
- README.md
- LICENSE
- CHANGELOG
- .gitignore
jobs:
linux:
name: Linux, Python ${{ matrix.python }}, environment ${{ matrix.env }}
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.10", "3.11"]
env: ["1", "2", "3", "4", "5"]
exclude:
# ModuleNotFoundError: No module named 'tomli'
- python: "3.10"
env: "5"
steps:
- name: Cache dependencies
uses: actions/cache@v2
with:
key: ${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
path: |
~/.cache
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
- name: Run tests
run: ./ci.sh test "$ENV_NUMBER"
env:
ENV_NUMBER: ${{ matrix.env }}