Skip to content

Bump peter-evans/create-pull-request from 5.0.2 to 6.0.1 #237

Bump peter-evans/create-pull-request from 5.0.2 to 6.0.1

Bump peter-evans/create-pull-request from 5.0.2 to 6.0.1 #237

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@0a5c61591373683505ea898e09a3ea4f39ef2b9c # 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