Skip to content

Add initial package boilerplate and implementation #4

Add initial package boilerplate and implementation

Add initial package boilerplate and implementation #4

Workflow file for this run

name: Pytest-run-parallel tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
fail-fast: False

Check failure on line 16 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / Pytest-run-parallel tests

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 16, Col: 20): Unexpected value 'false'
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.13t', 'pypy-3.8']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
if: ${{ !endsWith(matrix.python-version, 't') }}
with:
python-version: ${{ matrix.python-version }}
- uses: deadsnakes/action@6c8b9b82fe0b4344f4b98f2775fcc395df45e494 # v3.1.0
if: ${{ endsWith(matrix.python-version, 't') }}
with:
python-version: "3.13"
nogil: true
- name: Install tox
run: pip install tox
- name: Test
run: tox -e py