aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorcyqsimon <28627918+cyqsimon@users.noreply.github.com>2022-09-15 18:56:02 +0000
committerGitHub <noreply@github.com>2022-09-15 18:56:02 +0000
commit82a3207671e3a01eb011129e1f34b653ca7eb39c (patch)
treedf7667ba5db89c496db7a26e2628f32e56f17f65 /.github/workflows/ci.yml
parentAdd tooltip on QR code (diff)
parentMerge pull request #902 from kianmeng/fix-typos (diff)
downloadminiserve-82a3207671e3a01eb011129e1f34b653ca7eb39c.tar.gz
miniserve-82a3207671e3a01eb011129e1f34b653ca7eb39c.zip
Merge branch 'master' into qrcode
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml7
1 files changed, 2 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 02d4808..840f43a 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -4,13 +4,11 @@ on: [push, pull_request]
jobs:
ci:
- name: ${{ matrix.rust }} on ${{ matrix.os }}
+ name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
- timeout-minutes: 30
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
- rust: [stable, nightly]
steps:
- name: Checkout code
@@ -20,7 +18,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
- toolchain: ${{ matrix.rust }}
+ toolchain: stable
override: true
components: rustfmt, clippy
@@ -45,4 +43,3 @@ jobs:
with:
command: clippy
args: -- -D warnings
- if: matrix.rust == 'nightly'