diff options
author | Sven-Hendrik Haase <svenstaro@gmail.com> | 2022-09-15 03:24:32 +0000 |
---|---|---|
committer | Sven-Hendrik Haase <svenstaro@gmail.com> | 2022-09-15 03:24:32 +0000 |
commit | 9f17d55e4bc2f2ec16f64d266e10ecb7184e1c9b (patch) | |
tree | 58b06a77185207fe858594caa12d88f4ade725a5 /.github/workflows/ci.yml | |
parent | Merge pull request #875 from svenstaro/dependabot/cargo/chrono-humanize-0.2.2 (diff) | |
download | miniserve-9f17d55e4bc2f2ec16f64d266e10ecb7184e1c9b.tar.gz miniserve-9f17d55e4bc2f2ec16f64d266e10ecb7184e1c9b.zip |
Build container images using podman
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/ci.yml | 7 |
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' |