CI: Add description label to container images #5
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Execute tests | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v6 | |
| - name: Fetch Rust dependencies | |
| run: cargo fetch --locked | |
| - name: Check formatting | |
| run: cargo fmt --check | |
| - name: Build | |
| run: cargo build --locked | |
| - name: Run tests | |
| run: cargo test --locked --verbose | |
| - name: Look for common mistakes | |
| run: cargo clippy --locked |