From 5662b773b09e070e6993e3bd78a3c415da8b53a4 Mon Sep 17 00:00:00 2001 From: Erik Simon Date: Wed, 8 Jul 2026 16:44:34 +0200 Subject: [PATCH] Remove GitHub Actions CI --- .github/workflows/ci.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index e175c4d..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: CI - -on: - push: - branches: [main] - pull_request: - -env: - CARGO_TERM_COLOR: always - -jobs: - test: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@stable - with: - components: rustfmt, clippy - - uses: Swatinem/rust-cache@v2 - - name: fmt - run: cargo fmt --all -- --check - - name: clippy - run: cargo clippy --workspace --all-targets -- -D warnings - - name: test - run: cargo test --workspace