We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39495d5 commit d330683Copy full SHA for d330683
.github/workflows/build.yml
@@ -1,4 +1,4 @@
1
-name: Build
+name: Build test
2
3
on: [push, pull_request]
4
@@ -8,11 +8,16 @@ jobs:
8
container: zephyrprojectrtos/ci:latest
9
env:
10
CMAKE_PREFIX_PATH: /opt/toolchains
11
+ COMMIT_RANGE: ${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }}
12
+ BASE_REF: ${{ github.base_ref }}
13
steps:
14
- name: Checkout
- uses: actions/checkout@v2
15
+ uses: actions/checkout@v3
16
with:
- path: Arduino-Zephyr-API
17
+ ref: ${{ github.event.pull_request.head.sha }}
18
+ fetch-depth: 0
19
+ persist-credentials: false
20
+ path: modules/lib/Arduino-Zephyr-API
21
22
- name: Initialize
23
working-directory: Arduino-Zephyr-API
0 commit comments