From eba86d542d19f7bb41ec80298daa2a5231587b87 Mon Sep 17 00:00:00 2001 From: PlexSheep Date: Sun, 3 Mar 2024 17:29:27 +0100 Subject: [PATCH] fix github ci --- .github/workflows/cargo.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cargo.yaml b/.github/workflows/cargo.yaml index 8a1a394..541a626 100644 --- a/.github/workflows/cargo.yaml +++ b/.github/workflows/cargo.yaml @@ -38,7 +38,9 @@ jobs: - name: cargo fmt run: cargo fmt --all - name: install python - run: apt update && apt install libpython3-dev -y + uses: actions/setup-python@v5 + with: + python-version: '3.11' - name: cargo test run: cargo test --all-features --all-targets --workspace - name: commit back to repository