From d1288dc2b1a45252e68a0f754198cf0d5b305d0e Mon Sep 17 00:00:00 2001 From: konstin Date: Fri, 3 Mar 2023 16:50:26 +0100 Subject: [PATCH] Remove maturin build from CI (#3322) maturin build generally works when cargo build works, so imho it's not worth running it with every CI run. --- .github/workflows/ci.yaml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 23ce1b0051..505a7440ac 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -109,21 +109,6 @@ jobs: ./scripts/add_rule.py --name FirstRule --code TST001 --linter test - run: cargo check - maturin-build: - name: "maturin build" - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: "Install Rust toolchain" - run: rustup show - - uses: Swatinem/rust-cache@v1 - - uses: actions/setup-python@v4 - with: - python-version: "3.11" - - run: pip install maturin - - run: maturin build -b bin - - run: python scripts/transform_readme.py --target pypi - typos: name: "spell check" runs-on: ubuntu-latest