Skip to content

Fix setup-pixi action version tag #76

Fix setup-pixi action version tag

Fix setup-pixi action version tag #76

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.4
- name: Run Native tests
run: |
cargo test --verbose -F native-tests