Browse Source

test workflow

Sébastien 4 years ago
parent
commit
b7932a6407
1 changed files with 18 additions and 0 deletions
  1. 18 0
      .github/workflows/cmake.yml

+ 18 - 0
.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}"