update job names
All checks were successful
Cargo / build (push) Successful in 2m18s

This commit is contained in:
2025-07-18 11:44:59 +01:00
parent 345b3a2a2b
commit 2e102bfffd
2 changed files with 4 additions and 23 deletions

View File

@ -9,25 +9,25 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v4
- name: Build Project
- name: Build project
uses: actions-rs/cargo@v1
with:
command: build
args: --release
- name: Run Clippy
- name: Run clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -Dwarnings -Wclippy::correctness -Wclippy::complexity -Wclippy::perf -Aclippy::missing_errors_doc -Aclippy::missing_panics_doc
- name: Run Unit Tests
- name: Run unit tests
uses: actions-rs/cargo@v1
with:
command: test
args: --lib --bins
- name: Run Integration Tests
- name: Run integration tests
uses: actions-rs/cargo@v1
with:
command: test