rs-dht-pio/.forgejo/workflows/build_push.yaml

22 lines
413 B
YAML
Raw Permalink Normal View History

2024-08-06 04:43:21 +00:00
name: Check Build
run_name: Check Build
on:
push:
jobs:
Test build:
steps:
- uses: https://github.com/actions/checkout@main
- uses: https://github.com/dtolnay/rust-toolchain@stable
- name: Build - debug
run: |
2024-08-06 04:59:59 +00:00
cargo build --target thumbv6m-none-eabi
2024-08-06 04:43:21 +00:00
- name: Build - release
run: |
2024-08-06 04:59:59 +00:00
cargo build --target thumbv6m-none-eabi --release
2024-08-06 04:43:21 +00:00