Skip to content

feat(compat): drop support for python 3.6 #11

feat(compat): drop support for python 3.6

feat(compat): drop support for python 3.6 #11

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: python -m pip install --upgrade pip tox tox-gh-actions
- run: tox
- run: tox -e upload
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}