Skip to content

Commit

Permalink
Create firmware_build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
delihus authored Oct 17, 2023
1 parent 6ae5642 commit 9525ba7
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/firmware_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Firmware release
on:
pull_request:

jobs:
firmware-build:
name: Firmware build
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Installing platformio
run: pip3 install -U platformio

- name: Building a firmware for STM32
run: git submodule update --init --recursive && pio run

0 comments on commit 9525ba7

Please sign in to comment.