rust-imap/.github/workflows/nostd.yml
Jon Gjengset 71c2048cc0 mv github .github
This should make it possible to have rust-ci-conf as a remote you merge
from.
2022-09-18 11:44:59 -07:00

24 lines
580 B
YAML

on:
push:
branches: [main]
pull_request:
name: no-std
jobs:
nostd:
runs-on: ubuntu-latest
name: ${{ matrix.target }}
strategy:
matrix:
target: [thumbv7m-none-eabi, aarch64-unknown-none]
steps:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
target: ${{ matrix.target }}
- uses: actions/checkout@v3
- name: cargo check
uses: actions-rs/cargo@v1
with:
command: check
args: --target ${{ matrix.target }} --no-default-features