Skip to content

Bump tox-gh-actions from 2.9.1 to 3.2.0 #233

Bump tox-gh-actions from 2.9.1 to 3.2.0

Bump tox-gh-actions from 2.9.1 to 3.2.0 #233

Workflow file for this run

---
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Update pip and install dev requirements
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Lint
run: make lint
- name: Test
run: tox