Skip to content

Commit

Permalink
Update names of jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
lukas0008 committed Aug 22, 2024
1 parent 6f9ce48 commit b27f6c2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:

jobs:
format:
name: Rust project - latest
name: Check formatting
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -23,7 +23,7 @@ jobs:

- run: cargo fmt --check
clippy:
name: Rust project - latest
name: Run lints
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -37,7 +37,7 @@ jobs:

- run: cargo clippy --all-targets --all-features --no-default-features -- -D warnings
build_and_test:
name: Rust project - latest
name: Build project and test
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -52,7 +52,7 @@ jobs:
- run: cargo build --verbose
- run: cargo test --verbose
build_release:
name: Rust project - latest
name: Build project in release
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down

0 comments on commit b27f6c2

Please sign in to comment.