Skip to content

Bump github/codeql-action from 2.22.7 to 2.22.8 #217

Bump github/codeql-action from 2.22.7 to 2.22.8

Bump github/codeql-action from 2.22.7 to 2.22.8 #217

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