-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trying to remember the basic syntax pixi-setup taken from https://github.com/marketplace/actions/setup-pixi
- Loading branch information
Showing
1 changed file
with
28 additions
and
12 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,28 @@ | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: v0.39.2 | ||
cache: true | ||
# auth-host: prefix.dev | ||
# auth-token: ${{ secrets.PREFIX_DEV_TOKEN }} | ||
- run: | ||
- pixi --version | ||
- pixi run clean | ||
- pixi run build | ||
- pixi run check | ||
- pixi run docs | ||
name: build | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out repo | ||
uses: actions/checkout@v2 | ||
- name: Install pixi | ||
uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: v0.39.2 | ||
cache: true | ||
# auth-host: prefix.dev | ||
# auth-token: ${{ secrets.PREFIX_DEV_TOKEN }} | ||
run: pixi --version | ||
- name: build all | ||
run: | | ||
pixi run clean | ||
pixi run build | ||
pixi run check | ||
pixi run docs |