Skip to content

Testing on macos-latest #32

Testing on macos-latest

Testing on macos-latest #32

Workflow file for this run

name: Testing on macos-latest
on:
push:
pull_request:
schedule:
- cron: '0 12 * * 0'
jobs:
build:
runs-on: macOS-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Set up requirements & configuration variables
run: |
brew update
brew install cmake
pip install --upgrade pip wheel
git submodule update --init --recursive
pip install -r test_requirements.txt
- name: make
shell: bash
run: |
pip install .
- name: make test
shell: bash
run: |
export CASM_PREFIX=$(python -m libcasm.casmglobal --prefix)
python -m pytest -rsap python/tests