We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f188ae commit 6a44f86Copy full SHA for 6a44f86
.github/workflows/build_test.yml
@@ -8,16 +8,14 @@ jobs:
8
build-project:
9
name: Build Project
10
runs-on: ubuntu-latest
11
- container:
12
- image: stronglytyped/arm-none-eabi-gcc:latest
13
timeout-minutes: 5
14
steps:
15
- name: checkout code
16
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
17
- - name: print toolchain version
18
- run: arm-none-eabi-gcc --version
19
- name: build project
20
- run: make build
+ uses: docker://stronglytyped/arm-none-eabi-gcc:latest
+ with:
+ args: arm-none-eabi-gcc --version && make build
21
- name: upload build files
22
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
23
with:
0 commit comments