Skip to content

Bump actions/setup-python from 4.6.0 to 4.7.0 #166

Bump actions/setup-python from 4.6.0 to 4.7.0

Bump actions/setup-python from 4.6.0 to 4.7.0 #166

name: Test and Optionally Publish
on:
push:
branches:
- master
pull_request:
types:
- opened
- reopened
- synchronize
permissions: read-all
jobs:
test:
name: Check code against linter/unit tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: python -m pip install tox tox-gh-actions
- name: Test with Tox
run: tox