Add cross-platform Nemotron transcription #157
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: rust | |
| on: | |
| pull_request: | |
| paths: | |
| - "**/*.rs" | |
| - "**/Cargo.toml" | |
| - "**/Cargo.lock" | |
| - "rust-toolchain.toml" | |
| - ".clippy.toml" | |
| - ".rustfmt.toml" | |
| - ".github/workflows/rust.yaml" | |
| - "flake.lock" | |
| - "flake.nix" | |
| - "nix/crane.nix" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }}-rust | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| actions: write | |
| id-token: write | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - uses: ./.github/actions/setup-nix | |
| with: | |
| # Avoid another Nix-based workflow winning the shared primary key | |
| # before this job can persist Crane's buildDepsOnly artifacts. | |
| cache-suffix: crane | |
| # Crane shares buildDepsOnly artifacts between the package, clippy, and | |
| # test derivations. setup-nix persists those derivations between runs. | |
| - run: nix flake check --print-build-logs |