Skip to content

CI: Add description label to container images #5

CI: Add description label to container images

CI: Add description label to container images #5

Workflow file for this run

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