Skip to content

Commit f35a216

Browse files
committed
clean up
1 parent af03d6c commit f35a216

File tree

2 files changed

+10
-12
lines changed

2 files changed

+10
-12
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,10 @@ jobs:
2323
runs-on: [ubuntu-latest, macos-latest, windows-latest]
2424

2525
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
3426
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3527
- uses: prefix-dev/setup-pixi@92815284c57faa15cd896c4d5cfb2d59f32dc43d # v0.8.3
3628
with:
37-
pixi-version: v0.44.0
29+
pixi-version: v0.45.0
3830
cache: true
3931
environments: ${{ matrix.environment }}
4032
- name: Run tests

pixi.toml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,15 @@ tests-ci.depends-on = ["build-tests-ci"]
106106
tests-ci.cwd = "."
107107
# Coverage
108108
coverage.cmd = [
109-
"cmake", "--build", "build", "--target", "coverage_html", "-j3",
110-
"--config", "Release"
111-
]
109+
"cmake",
110+
"--build",
111+
"build",
112+
"--target",
113+
"coverage_html",
114+
"-j3",
115+
"--config",
116+
"Release",
117+
]
112118
coverage.depends-on = ["tests-ci"]
113119
coverage.cwd = "."
114120
# Tests and coverage

0 commit comments

Comments
 (0)