docs: modified Makefile change directory #19
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: C/C++ CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: sudo apt-get install build-essential sdcc | |
- name: Blink example | |
working-directory: Software/examples/Blink | |
run: make all | |
- name: ADC example | |
working-directory: Software/examples/ADC | |
run: make all | |
- name: I2C example | |
working-directory: Software/examples/I2C/SSD1306 | |
run: make all | |