Skip to content

Merge pull request #131 from riiengineering/fix/ci/graal-macos-x86 #75

Merge pull request #131 from riiengineering/fix/ci/graal-macos-x86

Merge pull request #131 from riiengineering/fix/ci/graal-macos-x86 #75

---
name: test-unit-optional
on:
workflow_dispatch:
push:
branches:
- main
jobs:
unit-tests:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-14 # ARM
- macos-15-intel
python-version:
- pypy-3.6
- pypy-3.7
- pypy-3.8
- pypy-3.9
- pypy-3.10
- pypy-3.11
- graalpy-22.3.1
- graalpy-23.1.2
- graalpy-24.2.2
- graalpy-25.0.3
exclude:
- {os: "macos-14", python-version: "pypy-3.6"}
- {os: "macos-14", python-version: "pypy-3.7"}
- {os: "macos-15-intel", python-version: "graalpy-25.0.3"}
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository code
uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: true
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Information
run: |
python3 -V
bin/skonfig -V
- name: Run unit tests
env:
SANDBOX: ${{ startsWith(matrix.os, 'macos') && 'seatbelt' || '' }}
run: |
make unittest