MSEOSKERN-4482: Profiling Agent Command Line Arguments #36
Workflow file for this run
This file contains 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: CI | |
on: | |
pull_request: | |
push: | |
jobs: | |
ci: | |
runs-on: ubuntu-22.04 | |
permissions: | |
id-token: write | |
contents: read | |
steps: | |
- uses: actions/checkout@main | |
- uses: DeterminateSystems/nix-installer-action@main | |
- uses: DeterminateSystems/magic-nix-cache-action@main | |
- name: Run `cargo check` | |
run: nix develop --command cargo check | |
- name: Run `cargo clippy` | |
run: nix develop --command cargo clippy --all-targets -- -D warnings | |
- name: Run `cargo fmt` | |
run: nix develop --command cargo fmt --check | |
- name: Run `nix fmt` | |
run: nix fmt -- --check . |