diff --git a/.github/workflows/rust-build.yml b/.github/workflows/rust-build.yml index 9b1a1ff..ca0a9b2 100644 --- a/.github/workflows/rust-build.yml +++ b/.github/workflows/rust-build.yml @@ -18,6 +18,12 @@ jobs: os: [ubuntu-latest, windows-latest, macos-latest] steps: - - uses: actions/checkout@v4 - - name: Build project - run: cargo build --release --all-features \ No newline at end of file + - uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.10" + + - name: Build project + run: cargo build --release --all-features