diff options
| author | flip1995 <philipp.krones@embecosm.com> | 2020-12-10 08:53:27 +0100 |
|---|---|---|
| committer | flip1995 <philipp.krones@embecosm.com> | 2020-12-10 10:53:19 +0100 |
| commit | 41cab83fdb9d10d620c0529bc837a3dddff5dd5f (patch) | |
| tree | d4008e97949afa69807d9dfa56a7c37f4202b549 /.github/workflows/clippy_dev.yml | |
| parent | 20d84fdd98c16e36d0701c2b5a7f52268c54977b (diff) | |
Fix toolchain installation in workflows
Diffstat (limited to '.github/workflows/clippy_dev.yml')
| -rw-r--r-- | .github/workflows/clippy_dev.yml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/.github/workflows/clippy_dev.yml b/.github/workflows/clippy_dev.yml index 5ee157cf23b..95da775b7bc 100644 --- a/.github/workflows/clippy_dev.yml +++ b/.github/workflows/clippy_dev.yml @@ -22,6 +22,12 @@ jobs: steps: # Setup + - name: Checkout + uses: actions/checkout@v2.3.3 + + - name: remove toolchain file + run: rm rust-toolchain + - name: rust-toolchain uses: actions-rs/toolchain@v1.0.6 with: @@ -29,9 +35,7 @@ jobs: target: x86_64-unknown-linux-gnu profile: minimal components: rustfmt - - - name: Checkout - uses: actions/checkout@v2.3.3 + default: true # Run - name: Build |
