Added IWDG code and header file #4
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 of your workflow | |
name: Build Workflow | |
# Define the trigger event(s) | |
# on: pull_request | |
on: [push] | |
# Jobs run in parallel by default, each runs steps in sequence | |
jobs: | |
build-and-compile: | |
runs-on: ubuntu-latest | |
steps: | |
# Use github.com/actions/checkout to check out this repo | |
- name: Check out this repo | |
uses: actions/checkout@v3 | |
- name: Build STM32CubeIde project | |
uses: xanderhendriks/action-build-stm32cubeide@v10.0 | |
with: | |
project-path: 'DAQ_System' | |
project-target: 'DAQ_System/Debug' | |