Skip to content

Bump setuptools from 67.6.1 to 70.0.0 #227

Bump setuptools from 67.6.1 to 70.0.0

Bump setuptools from 67.6.1 to 70.0.0 #227

Workflow file for this run

---
name: Tests
on: [push]
jobs:
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: '3.9'
- run: pip install poetry
- uses: actions/[email protected]
id: poetry-cache
with:
path: ~/.cache/pypoetry/virtualenvs
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
restore-keys: |
${{ runner.os }}-poetry-
- run: poetry install
- uses: actions/[email protected]
with:
path: ~/.cache/pre-commit
key: ${{ runner.os }}-pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
- run: poetry run pre-commit run --all-files
- run: poetry run pytest