diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 3a6a472..c28a17f 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -86,7 +86,7 @@ jobs: # `cargo-hack` checks combinations of feature flags to ensure that features # are all additive which is required for feature unification. runs-on: ubuntu-latest - name: ubuntu / stable / features + name: stable / features steps: - uses: actions/checkout@v4 with: @@ -105,7 +105,7 @@ jobs: run: cargo hack check --feature-powerset --depth 2 --release --target wasm32-unknown-unknown --skip std --workspace --exclude e2e --exclude basic-example-script --exclude benches typos: runs-on: ubuntu-latest - name: ubuntu / stable / typos + name: stable / typos steps: - name: Checkout Actions Repository uses: actions/checkout@v4 diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index a525bea..755c52c 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -15,18 +15,10 @@ concurrency: env: CARGO_TERM_COLOR: always jobs: - required: - runs-on: ubuntu-latest - name: ${{ matrix.toolchain }} - strategy: - matrix: - # Run on stable and beta to ensure that tests won't break on the next - # version of the rust toolchain. - toolchain: [ stable, beta ] - coverage: - runs-on: ubuntu-latest - name: stable / coverage - steps: + coverage: + runs-on: ubuntu-latest + name: stable / coverage + steps: - uses: actions/checkout@v4 with: submodules: true