From 50c8ca6c84e4427e2de30569a04bd6f01145f1a1 Mon Sep 17 00:00:00 2001 From: Nicolas Patry Date: Wed, 11 Sep 2024 11:54:12 +0200 Subject: [PATCH] Fix the gh action? --- .github/workflows/tests.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index e92ecbe8..3cf70121 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -28,6 +28,7 @@ jobs: - uses: actions/checkout@v2 - name: Set up Python uses: actions/setup-python@v1 + id: python with: python-version: 3.11 - name: Install Rust @@ -81,7 +82,7 @@ jobs: pre-commit run --all-files - name: Run Rust tests run: | - export LD_LIBRARY_PATH=${{ pythonLocation }}/lib/ + export LD_LIBRARY_PATH=${{ steps.python.outputs.pythonLocation }}/lib/ echo $LD_LIBRARY_PATH cargo test - name: sccache stats