From cfd9a96155c773c90480277f8267a91b87c9025b Mon Sep 17 00:00:00 2001 From: Vasily Davydov Date: Thu, 27 Apr 2023 02:08:57 +0300 Subject: [PATCH] Create build.yml --- .github/workflows/build.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..699002c --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,18 @@ +name: Build project from mcuexpresso +on: + push: + branches: [ main ] +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + - name: Setup MCUXpresso IDE + uses: NXP-Micro/setup-mcuxpresso-ide@v1.3 + with: + version: '11.3.0' + - name: Build project + run: | + cd source/shoh + mcuxpressoide -nosplash -data . -import . -build Build -cleanBuild all