forked from Intellindust-AI-Lab/DEIM
-
Notifications
You must be signed in to change notification settings - Fork 7
38 lines (32 loc) · 888 Bytes
/
test_quickstart.yml
File metadata and controls
38 lines (32 loc) · 888 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Test Quickstart
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install pixi (Unix)
if: runner.os != 'Windows'
shell: bash
run: |
curl -fsSL https://pixi.sh/install.sh | bash
echo "$HOME/.pixi/bin" >> $GITHUB_PATH
- name: Install pixi (Windows)
if: runner.os == 'Windows'
shell: pwsh
run: |
powershell -ExecutionPolicy ByPass -c "irm -useb https://pixi.sh/install.ps1 | iex"
echo "$HOME/.pixi/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: Run quickstart
shell: bash
run: |
pixi run quickstart