Skip to content

Update pytest in pyproject.toml from ^7.1.0 to ^8.3.2 #106

Update pytest in pyproject.toml from ^7.1.0 to ^8.3.2

Update pytest in pyproject.toml from ^7.1.0 to ^8.3.2 #106

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install poetry
./scripts/install
- name: Format check
run: |
./scripts/pre-commit
- name: Test
run: |
./scripts/test