From 162fbaa5eaef6a87f8b4f2f3a57c78aa21758fff Mon Sep 17 00:00:00 2001 From: Zachary Charlop-Powers Date: Sun, 17 Nov 2024 13:58:04 -0500 Subject: [PATCH] add a setup-python step --- .github/workflows/rust-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust-ci.yml b/.github/workflows/rust-ci.yml index 76137e9487..6c86b3dd98 100644 --- a/.github/workflows/rust-ci.yml +++ b/.github/workflows/rust-ci.yml @@ -14,9 +14,11 @@ jobs: matrix: os: [ubuntu-latest, windows-latest, macOS-latest] rust: [stable] - python-version: ["3.11"] steps: - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: "3.11" - uses: actions-rs/toolchain@v1 with: profile: minimal