more literalincludes #53
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: Py | |
on: | |
push: | |
paths: | |
- python/** | |
- Makefile | |
- _data/** | |
- .github/python.yml | |
jobs: | |
# python-lint: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# | |
# - name: Use Python 3.12 | |
# uses: actions/setup-python@v5 | |
# with: | |
# python-version: 3.12 | |
# cache: 'pip' | |
# cache-dependency-path: | | |
# python/requirements.txt | |
# c/requirements.txt | |
# | |
# - name: Lint | |
# run: make pytest LINT=only | |
python: | |
strategy: | |
fail-fast: false | |
matrix: | |
version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] | |
os: [ubuntu-latest, windows-latest] | |
exclude: | |
- os: ubuntu-latest | |
version: 3.6 | |
include: | |
- os: ubuntu-20.04 | |
version: 3.6 | |
- os: macos-latest | |
version: 3.11 | |
- os: macos-latest | |
version: 3.12 | |
- os: ubuntu-latest | |
version: graalpy-23.1 | |
- os: macos-13 | |
version: 3.11 | |
- os: macos-13 | |
version: 3.12 | |
- os: ubuntu-latest | |
version: graalpy-24.0 | |
- os: ubuntu-latest | |
version: pypy3.8 | |
- os: ubuntu-latest | |
version: pypy3.9 | |
- os: ubuntu-latest | |
version: pypy3.10 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Python ${{ matrix.version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.version }} | |
cache: 'pip' | |
cache-dependency-path: | | |
python/requirements.txt | |
c/requirements.txt | |
- name: Run tests (serially) | |
if: ${{(matrix.os == 'ubuntu-latest' && matrix.version == '3.12') || contains(matrix.version, 'graalpy')}} | |
run: make pytest LINT=false | |
- name: Run tests (in parallel) | |
if: ${{!((matrix.os == 'ubuntu-latest' && matrix.version == '3.12') || contains(matrix.version, 'graalpy'))}} | |
run: make pytest_auto LINT=false |