feat[core]: Redistribute #69
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: | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
unit_tests: | |
name: pixi run tests | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Pixi Setup | |
uses: prefix-dev/setup-pixi@v0.8.1 | |
with: | |
pixi-version: v0.33.0 | |
cache: true | |
- name: Check Pixi installed | |
run: | | |
pixi --version | |
which pixi | |
pixi run which python | |
- name: Run tests with Pixi | |
run: | | |
pixi run tests |