Skip to content

ci: update checkout action to v4 #36

ci: update checkout action to v4

ci: update checkout action to v4 #36

Workflow file for this run

on:
push:
branches:
- master
pull_request:
branches:
- master
name: Run Tox tests
jobs:
tox_test:
name: Tox test
steps:
- uses: actions/checkout@v4
- name: Run Tox tests
id: test
uses: fedora-python/tox-github-action@main
with:
tox_env: ${{ matrix.tox_env }}
strategy:
fail-fast: false
matrix:
tox_env: [py27, py36, py37, py38, py39, py310, pypy2, pypy3, pep8]
# Use GitHub's Linux Docker host
runs-on: ubuntu-latest