diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b3e37126..691726d0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,9 +29,9 @@ jobs: - name: Rust Cache uses: Swatinem/rust-cache@v2 - name: Run CI - if: matrix.rust == 'stable' || matrix.rust == 'beta' || matrix.rust == 'nightly' env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + if: matrix.rust == 'stable' || matrix.rust == 'beta' || matrix.rust == 'nightly' run: cargo run --bin cargo-make --target-dir target/ci -- make --env "CODECOV_TOKEN=${CODECOV_TOKEN}" ci-flow - name: Run CI (Minimal Supported Rust Version) if: matrix.rust != 'stable' && matrix.rust != 'beta' && matrix.rust != 'nightly' && matrix.os == 'ubuntu-latest'