Skip to content

ci: don't use the unmaintained actions-rs actions #216

ci: don't use the unmaintained actions-rs actions

ci: don't use the unmaintained actions-rs actions #216

Workflow file for this run

on: [push, pull_request]
name: test
jobs:
test:
name: test ${{ matrix.toolchain }} ${{ matrix.profile.name }} ${{ matrix.crates.name }} ${{ matrix.crates.feat }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@${{ matrix.toolchain }}

Check failure on line 9 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / test

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 9, Col: 15): Unrecognized named-value: 'matrix'. Located at position 1 within expression: matrix.toolchain
- name: cargo test
run: cargo test --manifest-path=${{ matrix.crates.name }}/Cargo.toml ${{ matrix.profile.flag }} --no-default-features --features=${{ matrix.crates.feat }}
strategy:
fail-fast: false
matrix:
toolchain:
- 1.70.0
- stable
- beta
- nightly
crates:
- {name: ciborium-ll}
- {name: ciborium}
- {name: ciborium, feat: std}
- {name: ciborium-io}
- {name: ciborium-io, feat: alloc}
- {name: ciborium-io, feat: std}
profile:
- {name: debug}
- {name: release, flag: --release}