chore(ci): bump softprops/action-gh-release from 1 to 2 #57
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: codi_bootload CI tests | |
'on': | |
- push | |
- pull_request | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
tests: | |
name: Run tests on nightly Rust channel | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly-2022-01-10 | |
profile: minimal | |
components: clippy | |
override: true | |
target: thumbv7em-none-eabihf | |
default: true | |
- name: Setup Cargo binary caching/installation action | |
uses: actions-rs/[email protected] | |
with: | |
crate: cross | |
version: latest | |
use-tool-cache: true | |
- name: Build debug codi_bootload | |
uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
args: '--all-features --target=thumbv7em-none-eabihf' | |
use-cross: true | |
- name: Run tests | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: '--all-features --target=thumbv7em-none-eabihf' | |
use-cross: true | |
- name: Run Clippy checks | |
uses: actions-rs/cargo@v1 | |
with: | |
use-cross: true | |
command: clippy | |
args: '--all-features --target=thumbv7em-none-eabihf' |