Skip to content

Bump setuptools from 67.8.0 to 70.0.0 #14

Bump setuptools from 67.8.0 to 70.0.0

Bump setuptools from 67.8.0 to 70.0.0 #14

Workflow file for this run

name: Tests
on: [ push ]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- name: Install dependencies
run: pip install pre-commit
- name: Lint
run: pre-commit run --all-files
tests:
name: Tests
needs: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry==1.4.2
poetry config virtualenvs.create false
poetry install -vv
- name: Run tests
run: pytest -vvv