Add VSCode configuration

This commit is contained in:
Oleg Kalachev
2024-07-25 06:51:47 +03:00
parent e993dde355
commit 6ef8820770
9 changed files with 298 additions and 1 deletions

View File

@@ -7,7 +7,7 @@ on:
branches: [ master ]
jobs:
build:
build_linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
@@ -15,6 +15,8 @@ jobs:
run: curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | BINDIR=/usr/local/bin sh
- name: Build firmware
run: make
- name: Check c_cpp_properties.json
run: tools/check_c_cpp_properties.py
build_macos:
runs-on: macos-latest
@@ -24,6 +26,8 @@ jobs:
run: brew install arduino-cli
- name: Build firmware
run: make
- name: Check c_cpp_properties.json
run: tools/check_c_cpp_properties.py
build_windows:
runs-on: windows-latest
@@ -35,6 +39,8 @@ jobs:
run: choco install make
- name: Build firmware
run: make
- name: Check c_cpp_properties.json
run: python3 tools/check_c_cpp_properties.py
build_simulator:
runs-on: ubuntu-latest