Skip to content

chore(deps): update tibdex/github-app-token action to v2 (#70) #111

chore(deps): update tibdex/github-app-token action to v2 (#70)

chore(deps): update tibdex/github-app-token action to v2 (#70) #111

Workflow file for this run

name: Rust
on:
pull_request:
push:
branches:
- master
jobs:
build:
strategy:
matrix:
rust-channel: [ 'stable', 'nightly' ]
rust-target: [ 'x86_64-unknown-linux-gnu', 'thumbv7em-none-eabi' ]
name: ${{ matrix.rust-channel }}-${{ matrix.rust-target }}
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Install toolchain
uses: xmc-rs/[email protected]
with:
toolchain: ${{ matrix.rust-channel }}
target: ${{ matrix.rust-target }}
override: true
- name: Cargo Check
uses: xmc-rs/[email protected]
with:
command: check
args: --target ${{ matrix.rust-target }}
- name: Cargo Build
uses: xmc-rs/[email protected]
with:
command: build
args: --verbose --target ${{ matrix.rust-target }}