Run test suite for trac-github #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: runtests | |
run-name: Run test suite for trac-github | |
on: [pull_request] | |
jobs: | |
runtests-py2: | |
runs-on: ubuntu-20.04 | |
container: | |
image: python:2.7.18-buster | |
steps: | |
- uses: actions/checkout@v4 | |
- run: pip install nox-py2 | |
- run: git config --global user.name runtest | |
- run: git config --global user.email runtest@localhost | |
- run: nox --non-interactive --error-on-missing-interpreter --session runtests -- --git-default-branch=master | |
runtests-py3: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: wntrblm/[email protected] | |
with: | |
python-versions: "3.7 - 3.12" | |
- uses: actions/checkout@v4 | |
- run: git config --global user.name runtest | |
- run: git config --global user.email runtest@localhost | |
- run: git config --global init.defaultBranch main | |
- run: nox --non-interactive --error-on-missing-interpreter --session runtests |