From b7932a6407cf72011224b5313a15a1a2df546e2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien?= Date: Fri, 16 Oct 2020 12:20:48 -0400 Subject: [PATCH] test workflow --- .github/workflows/cmake.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/cmake.yml diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml new file mode 100644 index 00000000..c4c04f14 --- /dev/null +++ b/.github/workflows/cmake.yml @@ -0,0 +1,18 @@ +# This is a basic workflow to help you get started with Actions + +name: Test-workflow + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Set Target + run: echo "TARGET_BUILD_NAME=SqueezeAmp" >> $GITHUB_ENV + - name: Get Target + run: echo "Target is ${TARGET_BUILD_NAME}"