diff options
author | Sven-Hendrik Haase <svenstaro@gmail.com> | 2022-05-18 03:58:48 +0000 |
---|---|---|
committer | Sven-Hendrik Haase <svenstaro@gmail.com> | 2022-05-18 04:17:33 +0000 |
commit | b66fc01a7905350214a231e2121c6631c47db8ee (patch) | |
tree | 58520ed75a26ed966cbe17104e3cc660be4be705 /.github/workflows | |
parent | Merge pull request #800 from svenstaro/dependabot/cargo/rustls-0.20.5 (diff) | |
download | miniserve-b66fc01a7905350214a231e2121c6631c47db8ee.tar.gz miniserve-b66fc01a7905350214a231e2121c6631c47db8ee.zip |
Run clippy only on nightly
Diffstat (limited to '.github/workflows')
-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' |