diff --git a/.github/workflows/rust.yml b/.github/workflows/ci.yml similarity index 87% rename from .github/workflows/rust.yml rename to .github/workflows/ci.yml index 0bd700a8..f35c534c 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/ci.yml @@ -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