Skip to content

Bump github/codeql-action from 2.20.4 to 2.21.0 (#110) #176

Bump github/codeql-action from 2.20.4 to 2.21.0 (#110)

Bump github/codeql-action from 2.20.4 to 2.21.0 (#110) #176

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@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