chore(action): update default python-versions (#767) #128
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: Action | |
on: | |
push: | |
branches: | |
- "main" | |
- "**action**" | |
pull_request: | |
paths: | |
- ".github/workflows/action.yml" | |
- ".github/action_helper.py" | |
- "action.yml" | |
env: | |
FORCE_COLOR: "1" | |
jobs: | |
action-default-tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
[ | |
ubuntu-20.04, | |
ubuntu-22.04, | |
windows-2019, | |
windows-2022, | |
macos-11, | |
macos-12, | |
macos-13, | |
] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./ | |
- run: nox --non-interactive --error-on-missing-interpreter --session github_actions_default_tests | |
action-all-tests: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- uses: ./ | |
with: | |
python-versions: "3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10, 3.11, 3.12, pypy-2.7, pypy-3.7, pypy-3.8, pypy-3.9, pypy-3.10" | |
- run: nox --non-interactive --error-on-missing-interpreter --session github_actions_all_tests |