aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorSven-Hendrik Haase <svenstaro@gmail.com>2022-09-15 05:35:05 +0000
committerGitHub <noreply@github.com>2022-09-15 05:35:05 +0000
commit18189ab698121d5bd21f190fd4669a5e87ed9dde (patch)
treee4618234d32e6bd1cae38af7c2e573e64e4225c7 /.github/workflows/ci.yml
parentFully qualify clap_complete::generate (diff)
parentBuild container images using podman (diff)
downloadminiserve-18189ab698121d5bd21f190fd4669a5e87ed9dde.tar.gz
miniserve-18189ab698121d5bd21f190fd4669a5e87ed9dde.zip
Merge pull request #904 from svenstaro/podman-images
Build container images using podman
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'