Debugging2 #1115
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unit tests | |
on: [push, pull_request] | |
concurrency: | |
group: test-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test-python: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: macos-14 | |
cc: clang | |
cxx: clang++ | |
python-version: '3.12' | |
extras: disabled | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Show environment | |
run: env | |
- name: Test running cargo | |
run: cargo --version | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
- name: Install Python dependencies | |
run: ./.ci/py-requirements.sh | |
env: | |
CC: ${{ matrix.cc }} # Do not pass -Werror when building dependencies |