Refactor CI workflow: rename file, update job name, and remove verbose flag from cargo build

This commit is contained in:
elipeter 2025-06-25 00:33:58 +02:00
parent 4872c5acb5
commit 47d4f589af

View file

@ -1,4 +1,4 @@
name: Rust
name: CI
on:
push:
@ -10,12 +10,12 @@ env:
CARGO_TERM_COLOR: always
jobs:
build:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
run: cargo build
- name: Run linter
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Run tests