Switch to pixi and support windows #16
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: Array API coverage tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
# Automatically stop old builds on the same branch/PR | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
array-api-tests: | |
name: Array API test | |
timeout-minutes: 90 | |
runs-on: ubuntu-latest-16core | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
fetch-depth: 0 | |
submodules: recursive | |
- name: Set up pixi | |
uses: prefix-dev/setup-pixi@ba3bb36eb2066252b2363392b7739741bb777659 | |
- name: Install repository | |
run: pixi run postinstall | |
- name: Run Array API tests | |
env: | |
ARRAY_API_TESTS_MODULE: ndonnx | |
run: | | |
pushd api-coverage-tests | |
pixi run pytest --ci --max-examples 2 array_api_tests/ --json-report --json-report-file=api-coverage-tests.json -n auto -vv --skips-file=../skips.txt | |
popd | |
- name: Upload Array API tests report | |
uses: actions/upload-artifact@v4 | |
with: | |
name: api-coverage-tests | |
path: api-coverage-tests/api-coverage-tests.json |