added cargo install to workflows
Rust build & run checks / cargo-build-test (push) Failing after 44s Details

This commit is contained in:
Sven Vogel 2023-08-18 11:59:23 +02:00
parent 05cd227c3e
commit abe0617db9
1 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,8 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Cargo install
run: apt update && apt -y install cargo
- name: Test - name: Test
run: cargo test --verbose run: cargo test --verbose
- name: Clippy - name: Clippy