Skip to content

Bump actions/checkout from 3.5.2 to 3.5.3 (#100) #168

Bump actions/checkout from 3.5.2 to 3.5.3 (#100)

Bump actions/checkout from 3.5.2 to 3.5.3 (#100) #168

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@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b # 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