Mercurial > crates > systemd-socket
diff .github/workflows/rust.yml @ 31:fbb9e1206e3c
Use explicit Rust version in CI
| author | Martin Habovstiak <martin.habovstiak@gmail.com> |
|---|---|
| date | Sun, 20 Apr 2025 17:55:34 +0200 |
| parents | 27456533853e |
| children |
line wrap: on
line diff
--- a/.github/workflows/rust.yml Fri Feb 28 23:15:59 2025 +0100 +++ b/.github/workflows/rust.yml Sun Apr 20 17:55:34 2025 +0200 @@ -20,6 +20,11 @@ steps: - uses: actions/checkout@v2 + - name: Select the minimal lock file + run: cp Cargo-minimal.lock Cargo.lock + - name: Set Rust version + if: matrix.os != 'macOS-latest' + run: rustup default 1.48.0 - name: Build run: cargo build --verbose - name: Run tests
