File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -16,15 +16,21 @@ jobs:
16
16
tests :
17
17
name : ${{ matrix.environment }} ${{ matrix.runs-on }}
18
18
runs-on : ${{ matrix.runs-on }}
19
- env :
20
- XSREF_TABLES_PATH : " ${{ github.workspace }}/xsref/tables"
21
19
strategy :
22
20
fail-fast : false
23
21
matrix :
24
22
environment : [tests-ci]
25
23
runs-on : [ubuntu-latest, macos-latest, windows-latest]
26
24
27
25
steps :
26
+ - name : Set XSREF_TABLES_PATH
27
+ shell : bash
28
+ run : |
29
+ if [ "$RUNNER_OS" == "Windows" ]; then
30
+ echo "XSREF_TABLES_PATH=${{ github.workspace }}\\xsref\\tables" >> $GITHUB_ENV
31
+ else
32
+ echo "XSREF_TABLES_PATH=${{ github.workspace }}/xsref/tables" >> $GITHUB_ENV
33
+ fi
28
34
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
29
35
- uses : prefix-dev/setup-pixi@92815284c57faa15cd896c4d5cfb2d59f32dc43d # v0.8.3
30
36
with :
You can’t perform that action at this time.
0 commit comments