Skip to content

Bump setuptools from 57.5.0 to 70.0.0 #69

Bump setuptools from 57.5.0 to 70.0.0

Bump setuptools from 57.5.0 to 70.0.0 #69

Workflow file for this run

---
name: Tests
on: [push, pull_request]
jobs:
pytest:
name: pytest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install requirements
run: pip install -r requirements.txt
- name: Install test requirements
run: pip install -r test-requirements.txt
- name: Install pytest
run: pip install pytest
- name: Run pytest
run: pytest