0.4.0 #946
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: ci-branch-tests | |
on: push | |
concurrency: | |
group: ada-quick-tests-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test-core: | |
name: Test ada-py-core | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha || github.ref }} | |
- uses: prefix-dev/[email protected] | |
with: | |
pixi-version: v0.41.3 | |
environments: tests | |
cache: true | |
- name: Runs Tests | |
run: pixi run test-core | |
test-full: | |
name: Test ada-py-full | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha || github.ref }} | |
- uses: prefix-dev/[email protected] | |
with: | |
pixi-version: v0.41.3 | |
environments: tests | |
cache: true | |
- name: Run Tests | |
run: pixi run test |