Skip to content

Commit

Permalink
Activate Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
fangohr committed Dec 18, 2024
1 parent 2ea2b3d commit da63006
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: build

on:
push:
pull_request:

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Check out repo
uses: actions/checkout@v4
- 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 }}
- name: pixi run clean
run: |
pixi run clean
- name: pixi run build
run: |
pixi run build
- name: pixi run check
run: |
pixi run check
- name: pixi run docs
run: |
pixi run docs

0 comments on commit da63006

Please sign in to comment.