Skip to content

Fix CI badge

Fix CI badge #47

Workflow file for this run

on:
push:
branches: [ staging, trying, master ]
pull_request:
name: CI
jobs:
ci-linux:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental || false }}
strategy:
matrix:
rust: [stable, nightly]
include:
# Nightly is only for reference and allowed to fail
- rust: nightly
experimental: true
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
- name: Check code (cortex-m fs)
run: cargo check --features "cortex-m fs"
- name: Check code (cortex-m hs)
run: cargo check --features "cortex-m hs"
- name: Check code (cortex-m hs xcvrdly)
run: cargo check --features "cortex-m hs xcvrdly"
- name: Check code (riscv fs)
run: cargo check --features "riscv fs"