summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml7
-rw-r--r--.github/workflows/clang-format-lint.yml4
2 files changed, 10 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 02657c0..60c337d 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -16,8 +16,13 @@ jobs:
- kyria_right
- lily58_left
- lily58_right
+ - iris_left
+ - iris_right
- romac
+ - romac_plus
- settings_reset
+ - quefrency_left
+ - quefrency_right
include:
- board: proton_c
shield: clueboard_california
@@ -70,7 +75,7 @@ jobs:
args: 'build "-s app -b ${{ matrix.board }} -- -DSHIELD=${{ matrix.shield }}"'
- name: Archive Build
uses: actions/upload-artifact@v2
- if: ${{ matrix.board == 'nice_nano' }}
+ if: ${{ matrix.board != 'proton_c' }}
with:
name: "${{ matrix.board }}-${{ matrix.shield }}-zmk-uf2"
path: build/zephyr/zmk.uf2
diff --git a/.github/workflows/clang-format-lint.yml b/.github/workflows/clang-format-lint.yml
index 061bc3d..70ae986 100644
--- a/.github/workflows/clang-format-lint.yml
+++ b/.github/workflows/clang-format-lint.yml
@@ -6,11 +6,15 @@ on:
- "app/boards/**/*.c"
- "app/include/**/*.h"
- "app/src/**"
+ - "app/drivers/**/*.c"
+ - "app/drivers/**/*.h"
pull_request:
paths:
- "app/boards/**/*.c"
- "app/include/**/*.h"
- "app/src/**"
+ - "app/drivers/**/*.c"
+ - "app/drivers/**/*.h"
jobs:
build: