Skip to content

Commit

Permalink
chore: normalize workflow names
Browse files Browse the repository at this point in the history
  • Loading branch information
josecelano committed Jul 3, 2023
1 parent db1612c commit b069421
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
CARGO_INCREMENTAL: "0"
RUSTFLAGS: "-Cinstrument-coverage"
RUSTDOCFLAGS: "-Cinstrument-coverage"
- name: Install torrent edition tool (needed for testing)
run: cargo install imdl
- name: Test
run: cargo test --all-features --no-fail-fast
env:
Expand All @@ -34,6 +36,8 @@ jobs:
- name: Run grcov
run: grcov . --binary-path target/debug/deps/ -s . -t lcov --branch --ignore-not-existing --ignore '../**' --ignore '/*' -o coverage.lcov
- uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: ./coverage.lcov
flags: rust
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_crate.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish crate
name: Publish Crate

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_docker.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test Docker build
name: Test Docker Build

on:
push:
Expand Down

0 comments on commit b069421

Please sign in to comment.