From b38a85ead1c40dddc4a855002fe860ef5e3f1bcc Mon Sep 17 00:00:00 2001 From: beac0n Date: Sun, 11 Aug 2024 19:37:04 +0200 Subject: [PATCH] fix ci --- .github/workflows/rust.yml | 24 +++--------------------- 1 file changed, 3 insertions(+), 21 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 402aa43..02ac6fa 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -65,9 +65,9 @@ jobs: - name: Run tests end to end run: make test_end_to_end - name: Run tests - run: cargo test --no-default-features - - name: Run tests - run: cargo tarpaulin --out xml --verbose --all-features + run: make test + - name: Run Coverage + run: cargo tarpaulin --out xml --verbose - name: Upload reports to codecov uses: codecov/codecov-action@v4 with: @@ -110,24 +110,6 @@ jobs: command: fmt args: --all -- --check --verbose - msrv: - name: Check Rust version - runs-on: ubuntu-22.04 - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Install cargo-binstall - uses: taiki-e/install-action@cargo-binstall - - name: Install cargo-msrv - run: cargo binstall -y cargo-msrv - - name: Run cargo-msrv - shell: bash - run: | - for package in "git-cliff" "git-cliff-core"; do - printf "Checking MSRV for $package..." - cargo msrv --output-format json --path "$package" verify | tail -n 1 | jq --exit-status '.success' - done - release: name: Create Release runs-on: ubuntu-22.04