build(deps): update panic-halt requirement from 0.2 to 1.0 #134
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: CI | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '15 1 * * 6' | |
jobs: | |
checks_and_builds: | |
strategy: | |
fail-fast: false | |
matrix: | |
action: | |
- fmt | |
- doc | |
- check | |
- clippy | |
- build | |
- build-release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: install rust | |
run: curl --proto '=https' --tlsv1.3 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal | |
- name: install stm32 target | |
run: rustup target add thumbv6m-none-eabi | |
- name: act | |
run: .github/scripts/ci.bash ${{ matrix.action }} |