corrected yml to yaml, separated jobs, added unit test commands to wo… #6
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 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' | |