Skip to content

see what this GHA can do #36

see what this GHA can do

see what this GHA can do #36

Workflow file for this run

name: 'python tests'
# TODO: use the wheels from build-wheels
on:
- 'push'
- 'pull_request'
jobs:
build-wheels:
uses: habnabit/passacre/.github/workflows/build-wheels.yml@v1

Check failure on line 11 in .github/workflows/pytest.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pytest.yml

Invalid workflow file

error parsing called workflow ".github/workflows/pytest.yml" -> "habnabit/passacre/.github/workflows/build-wheels.yml@v1" : failed to fetch workflow: reference to workflow should be either a valid branch, tag, or commit
job2:
runs-on: ubuntu-latest
needs: job1
steps:
- run: echo ${{ needs.job1.outputs.firstword }} ${{ needs.job1.outputs.secondword }}
linux:
runs-on: 'ubuntu-latest'
needs: ['build-wheels']
strategy:
matrix:
python-version:
- 'pypy3.9'
- 'pypy3.10'
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
steps:
- run: 'echo ${{ needs.build-wheels }}'
- uses: 'actions/checkout@v4'
- name: 'set up python ${{ matrix.python-version }}'
uses: actions/setup-python@v5
with:
python-version: '${{ matrix.python-version }}'
- name: 'install tox'
run: |
python -mpip install -U pip setuptools
python -mpip install -U tox tox-gh-actions
- name: 'run tests'
run: |
tox
- uses: 'coverallsapp/github-action@v2.3.4'
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'
path-to-lcov: 'lcov.info'
macos:
runs-on: ${{ matrix.runner }}
needs: ['build-wheels']
strategy:
matrix:
runner:
- macos-12
- macos-14
python-version:
- 'pypy3.9'
- 'pypy3.10'
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
steps:
- run: 'echo ${{ needs.build-wheels }}'
- uses: actions/checkout@v4
- name: 'set up python ${{ matrix.python-version }}'
uses: actions/setup-python@v5
with:
python-version: '${{ matrix.python-version }}'
- name: 'install tox'
run: |
python -mpip install -U pip setuptools
python -mpip install -U tox tox-gh-actions
- name: 'run tests'
run: |
tox
- uses: 'coverallsapp/github-action@v2.3.4'
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'
path-to-lcov: 'lcov.info'
windows:
runs-on: 'windows-latest'
needs: ['build-wheels']
strategy:
matrix:
python-version:
- 'pypy3.9'
- 'pypy3.10'
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
steps:
- run: 'echo ${{ needs.build-wheels }}'
- uses: actions/checkout@v4
- name: 'set up python ${{ matrix.python-version }}'
uses: actions/setup-python@v5
with:
python-version: '${{ matrix.python-version }}'
- name: 'install tox'
run: |
python -mpip install -U pip setuptools
python -mpip install -U tox tox-gh-actions
- name: 'run tests'
run: |
tox
- uses: 'coverallsapp/github-action@v2.3.4'
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'
path-to-lcov: 'lcov.info'