Skip to content

Commit

Permalink
Add GraalPy workflow for running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cleder committed Dec 7, 2023
1 parent 526383b commit a835eac
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/run-all-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,25 @@ jobs:
run: |
pytest tests
graalpy:
runs-on: ubuntu-latest
strategy:
matrix:
graalpy-version: ['graalpy-22.3']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.graalpy-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.graalpy-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest
- name: Test with pytest
run: |
pytest tests
publish:
if: "github.event_name == 'push' && github.repository == 'cleder/pygeoif'"
needs: [cpython, static-tests, pypy]
Expand Down

0 comments on commit a835eac

Please sign in to comment.