Skip to content

Updated docs for testing and adding primary variables (Thanks David a… #30

Updated docs for testing and adding primary variables (Thanks David a…

Updated docs for testing and adding primary variables (Thanks David a… #30

name: tests-macos-silicon
on:
pull_request:
branches: [main]
workflow_dispatch:
jobs:
tests:
name: '${{ matrix.os }}:python-${{ matrix.python-version }}'
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-14]
python-version: ['3.10', '3.11']
fail-fast: false
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
id: setup_python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
if: steps.setup_python.outcome == 'success'
run: |
python -m pip install -U pip
python -m pip install -e .
python -m pip install pytest pytest-cov
- name: Run tests
if: steps.setup_python.outcome == 'success'
run: |
make opt
pytest
- name: Get unique id
uses: Tiryoh/gha-jobid-action@v1
id: jobs