From 5a7f980c92ad717f41abfacfc9e1b3bb1c1890cf Mon Sep 17 00:00:00 2001 From: PlexSheep Date: Sun, 3 Mar 2024 14:12:57 +0100 Subject: [PATCH] ci install python --- .gitea/workflows/cargo.yaml | 2 ++ .github/workflows/cargo.yaml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.gitea/workflows/cargo.yaml b/.gitea/workflows/cargo.yaml index b755c81..5232d11 100644 --- a/.gitea/workflows/cargo.yaml +++ b/.gitea/workflows/cargo.yaml @@ -36,6 +36,8 @@ jobs: run: cargo clippy --fix --all-features --all-targets --workspace - name: cargo fmt run: cargo fmt --all + - name: install python + run: apt update && apt install libpython3-dev -y - name: cargo test run: cargo test --all-features --all-targets --workspace - name: commit back to repository diff --git a/.github/workflows/cargo.yaml b/.github/workflows/cargo.yaml index 29abfde..8a1a394 100644 --- a/.github/workflows/cargo.yaml +++ b/.github/workflows/cargo.yaml @@ -37,6 +37,8 @@ jobs: run: cargo clippy --fix --all-features --all-targets --workspace - name: cargo fmt run: cargo fmt --all + - name: install python + run: apt update && apt install libpython3-dev -y - name: cargo test run: cargo test --all-features --all-targets --workspace - name: commit back to repository