Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
beac0n committed Aug 11, 2024
1 parent a2038a7 commit b38a85e
Showing 1 changed file with 3 additions and 21 deletions.
24 changes: 3 additions & 21 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit b38a85e

Please sign in to comment.