Skip to content

Update Pixi setup action and version #78

Update Pixi setup action and version

Update Pixi setup action and version #78

Workflow file for this run

name: Build
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
tests:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
- name: Run tests
run: cargo test --verbose
docker-tests:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
- name: Run Docker tests
run: cargo test --verbose -F docker-tests
native-tests:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
- name: Setup Pixi
uses: prefix-dev/setup-pixi@v0.9.2
with:
pixi-version: v0.63.2
- name: Run Native tests
run: |
cargo test --verbose -F native-tests