Update rust.yml

This commit is contained in:
Camerin Figueroa 2024-05-02 22:31:58 -04:00 committed by GitHub
parent 5300cc7be4
commit c22ca4fd27
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 3 deletions

View File

@ -15,9 +15,14 @@ jobs:
runs-on: self-hosted runs-on: self-hosted
steps: steps:
- uses: actions/checkout@v4 - name: Checkout sources
- name: Update to Nightly uses: actions/checkout@v4
run: rustup update nightly && rustup default nightly - name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Build - name: Build
run: cargo build --verbose run: cargo build --verbose
- name: Run tests - name: Run tests