summaryrefslogtreecommitdiffstats
path: root/.github/workflows/tests.yml
blob: d3f05eff143b0ae065f9371f48edc93975dbffee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: Run tests

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  tests:
    uses: fizyk/actions-reuse/.github/workflows/tests-pytests.yml@v2.4.0
    with:
      python-versions: '["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.8"]'
  tests-macos:
    needs:
      - tests
    uses: fizyk/actions-reuse/.github/workflows/tests-pytests.yml@v2.4.0
    with:
      python-versions: '["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.8"]'
      os: macos-latest