Merge pull request #572 from hamirmahal/refactor/replace-archived-action-with-similar-functionality

refactor: replace archived action
This commit is contained in:
David Kleingeld 2024-04-20 10:36:26 +02:00 committed by GitHub
commit a9045662b2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -36,12 +36,7 @@ jobs:
- name: install ${{ matrix.toolchain }} toolchain - name: install ${{ matrix.toolchain }} toolchain
id: install_toolchain id: install_toolchain
uses: actions-rs/toolchain@v1 run: rustup toolchain install ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
with:
toolchain: ${{ matrix.toolchain }}
profile: minimal
# Don't use a 'components:' entry--we don't need them with beta/nightly, plus nightly often doesn't have them
override: true
- run: cargo clippy -- -D warnings - run: cargo clippy -- -D warnings
if: matrix.toolchain == 'stable' && matrix.os == 'ubuntu-latest' if: matrix.toolchain == 'stable' && matrix.os == 'ubuntu-latest'