From b0091d66d18b6a279b51515ca1a3794246757637 Mon Sep 17 00:00:00 2001 From: Lennart <18233294+lennart-k@users.noreply.github.com> Date: Tue, 23 Sep 2025 11:47:08 +0200 Subject: [PATCH] remove ci.yml since testing is included in cicd.yml --- .github/workflows/ci.yml | 23 ----------------------- 1 file changed, 23 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 e62167f..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Rust CI -on: - push: - branches: ["main"] - pull_request: - branches: ["main"] -permissions: - contents: read - pull-requests: write - -env: - CARGO_TERM_COLOR: always - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - name: Build - run: cargo build --verbose - - name: Run tests - run: cargo test --verbose --workspace