diff options
author | Sven-Hendrik Haase <svenstaro@gmail.com> | 2022-05-18 04:42:50 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-18 04:42:50 +0000 |
commit | 7246cd41e98802d0bad8052965af420bcde22997 (patch) | |
tree | 58520ed75a26ed966cbe17104e3cc660be4be705 | |
parent | Merge pull request #800 from svenstaro/dependabot/cargo/rustls-0.20.5 (diff) | |
parent | Run clippy only on nightly (diff) | |
download | miniserve-7246cd41e98802d0bad8052965af420bcde22997.tar.gz miniserve-7246cd41e98802d0bad8052965af420bcde22997.zip |
Merge pull request #801 from svenstaro/run-clippy-only-on-nightly
Run clippy only on nightly
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/build-release-binaries.yml | 2 | ||||
-rw-r--r-- | .github/workflows/ci.yml | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/build-release-binaries.yml b/.github/workflows/build-release-binaries.yml index 57beed7..ff36c7a 100644 --- a/.github/workflows/build-release-binaries.yml +++ b/.github/workflows/build-release-binaries.yml @@ -152,7 +152,7 @@ jobs: path: ${{ matrix.artifact_name }} ### - # Below this line, steps will only be ran if a tag was pushed. + # Below this line, steps will only be run if a tag was pushed. ### - name: Get tag name diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 457b331..02d4808 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,3 +45,4 @@ jobs: with: command: clippy args: -- -D warnings + if: matrix.rust == 'nightly' |