Skip to content

Bump pypa/gh-action-pypi-publish from 1.8.6 to 1.8.8 #165

Bump pypa/gh-action-pypi-publish from 1.8.6 to 1.8.8

Bump pypa/gh-action-pypi-publish from 1.8.6 to 1.8.8 #165

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