Skip to content

Commit

Permalink
added PyPy nightly build to the CI matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
wjakob committed Nov 22, 2022
1 parent 16b77b1 commit d5b6905
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Continuous Integration
name: Tests

on:
workflow_dispatch:
Expand All @@ -20,15 +20,14 @@ jobs:
strategy:
fail-fast: false
matrix:
runs-on: [ubuntu-latest, windows-2022, macos-latest]
python:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
os: ['ubuntu-latest', 'windows-2022', 'macos-latest']
python: ['3.8', '3.9', '3.10', '3.11', 'pypy-3.9-nightly']
exclude:
- os: 'macos-latest'
- python: 'pypy-3.9-nightly'

name: "Python ${{ matrix.python }} / ${{ matrix.runs-on }}"
runs-on: ${{ matrix.runs-on }}
name: "Python ${{ matrix.python }} / ${{ matrix.os }}"
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
Expand All @@ -43,9 +42,14 @@ jobs:
- name: Update CMake
uses: jwlawson/actions-setup-cmake@v1.13

- name: Install Python dependencies
- name: Install PyTest
run: |
python -m pip install pytest pytest-github-actions-annotate-failures numpy
python -m pip install pytest pytest-github-actions-annotate-failures
- name: Install NumPy
if: matrix.python != 'pypy-3.9-nightly'
run: |
python -m pip install numpy
- name: Configure
run: >
Expand Down

0 comments on commit d5b6905

Please sign in to comment.