Skip to content

Fix URLs after move to trussed-dev #22

Fix URLs after move to trussed-dev

Fix URLs after move to trussed-dev #22

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
features:
- alloc
- heapless
- std
- alloc,derive
- heapless,derive
- std,derive
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
- name: Test with a feature subset
uses: actions-rs/cargo@v1
with:
command: test
args: --features ${{ matrix.features }} --verbose