Skip to content

Commit f3fa809

Browse files
committed
move test workflow to master
1 parent c94f93a commit f3fa809

File tree

1 file changed

+56
-0
lines changed

1 file changed

+56
-0
lines changed

.github/workflows/reftest.yml

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
name: explore self-test fail
2+
3+
on: [workflow_dispatch]
4+
5+
#on:
6+
#workflow_dispatch: # Allows you to run this workflow manually from the Actions tab
7+
# Runs on pushes targeting the default branch
8+
#push:
9+
# branches-ignore:
10+
# - master
11+
# branches: ['develop']
12+
#pull_request:
13+
# branches: ['develop']
14+
15+
16+
17+
18+
# Default to bash
19+
defaults:
20+
run:
21+
shell: bash
22+
23+
24+
jobs:
25+
build:
26+
strategy:
27+
fail-fast: false
28+
matrix:
29+
os:
30+
# - name: 'ubuntu-22.04'
31+
# - name: 'macos-latest'
32+
- name: 'windows-latest'
33+
cmd_extra: '-win'
34+
# env: ['py310', 'py311', 'py312', 'py313']
35+
env: ['py312']
36+
runs-on: ${{ matrix.os.name }}
37+
steps:
38+
# checkout repo
39+
- uses: actions/checkout@v2
40+
41+
# set up pixi
42+
- uses: prefix-dev/[email protected]
43+
with:
44+
environments: ${{ matrix.env }}
45+
pixi-version: v0.39.5
46+
manifest-path: pixi/pixi.toml
47+
48+
# run install to see if it works
49+
- name: Build
50+
run: pixi run --manifest-path pixi/pixi.toml -e ${{ matrix.env }} install${{ matrix.os.cmd_extra }}
51+
52+
- name: test
53+
run: |
54+
ls
55+
ls ..
56+
python tests/test_scriptref.py

0 commit comments

Comments
 (0)