diff options
author | joeycastillo <joeycastillo@utexas.edu> | 2022-01-19 09:23:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-19 09:23:21 -0500 |
commit | fb71be55ee09c1f7117c6bcdf4f4de30778c8f30 (patch) | |
tree | bde3bd51c03858ae597685bd91db3607b6ec8e82 /.github/workflows | |
parent | 1ae83e8fd48d59addf5f238cb28134a03f4ecc63 (diff) | |
download | Sensor-Watch-fb71be55ee09c1f7117c6bcdf4f4de30778c8f30.tar.gz Sensor-Watch-fb71be55ee09c1f7117c6bcdf4f4de30778c8f30.tar.bz2 Sensor-Watch-fb71be55ee09c1f7117c6bcdf4f4de30778c8f30.zip |
add movement to the workflow
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1eab21fc..93928721 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,8 +20,11 @@ jobs: - name: Compile accelerometer-test app run: make working-directory: 'apps/accelerometer-test' + - name: Compile movement + run: make + working-directory: 'movement/make' - name: Upload UF2 uses: actions/upload-artifact@v2 with: name: watch.uf2 - path: apps/**/build/watch.uf2 + path: movement/make/build/watch.uf2 |