From 3d132742196e60c71dc6fb3c5c39bdcd3cb3d62c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C4=99drzej=20Stuczy=C5=84ski?= Date: Wed, 9 Oct 2024 16:36:02 +0100 Subject: [PATCH] changed CI to no longer build with 'axum' feature since it was removed --- .github/workflows/ci-build.yml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index a68cc72562..089d7097fb 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -30,7 +30,7 @@ jobs: strategy: fail-fast: false matrix: - os: [arc-ubuntu-20.04, custom-runner-mac-m1] + os: [ arc-ubuntu-20.04, custom-runner-mac-m1 ] runs-on: ${{ matrix.os }} env: CARGO_TERM_COLOR: always @@ -62,14 +62,6 @@ jobs: with: command: build - # while disabled by default, this build ensures nothing is broken within - # `axum` feature - - name: Build with `axum` feature - uses: actions-rs/cargo@v1 - with: - command: build - args: --features axum - - name: Build all examples if: contains(matrix.os, 'ubuntu') uses: actions-rs/cargo@v1