From c22ca4fd2779b99ec9cbe2f907b5df1de4b5902b Mon Sep 17 00:00:00 2001 From: Camerin Figueroa Date: Thu, 2 May 2024 22:31:58 -0400 Subject: [PATCH] Update rust.yml --- .github/workflows/rust.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 0ea97db..fe1e18f 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -15,9 +15,14 @@ jobs: runs-on: self-hosted steps: - - uses: actions/checkout@v4 - - name: Update to Nightly - run: rustup update nightly && rustup default nightly + - name: Checkout sources + uses: actions/checkout@v4 + - name: Install stable toolchain + uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: stable + override: true - name: Build run: cargo build --verbose - name: Run tests