noexplicit #2226
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: run tests | |
on: | |
push: | |
pull_request: | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
macos: | |
runs-on: macos-13 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@main | |
- name: Setup Python environment | |
uses: actions/[email protected] | |
with: | |
python-version: '3.12' | |
- name: Get runner specifications | |
run: system_profiler SPHardwareDataType | |
- name: Build and check | |
uses: ./.github/actions/build_and_check | |
env: | |
build_procs: 4 | |
check_procs: 4 | |
myconfig: 'empty' | |
with_ccache: 'false' | |