ci(actions/rust): explicitly set up dependencies and toolchain override

This commit is contained in:
James Lucktaylor 2023-03-06 12:08:32 +00:00
parent a9e17ab8c6
commit 22219fd88f
No known key found for this signature in database
GPG Key ID: C705F79EC74F9953

View File

@ -87,6 +87,14 @@ jobs:
if: github.event_name == 'schedule'
steps:
- uses: actions/checkout@v3
- name: Install needed dependencies
run: |
apt-get update
apt-get install --assume-yes build-essential curl
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Run cargo build with all features
uses: actions-rs/cargo@v1
with: