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 badb02a commit d8b9862Copy full SHA for d8b9862
.github/workflows/ci.yml
@@ -63,7 +63,7 @@ jobs:
63
with:
64
path: ./
65
formatting:
66
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-latest
67
steps:
68
- uses: actions/checkout@v3
69
- name: Check formatting
@@ -93,7 +93,11 @@ jobs:
93
- name: Clone coreJSON
94
run: git clone https://github.com/FreeRTOS/coreJSON.git --depth 1 --branch v3.2.0
95
- name: Clone tinycbor
96
- run: git clone https://github.com/intel/tinycbor.git --depth 1 --branch main
+ run: |
97
+ git clone https://github.com/intel/tinycbor.git --depth 1 --branch main
98
+ cd tinycbor
99
+ cmake -B ./build -S .
100
+ cd ../
101
- name: Install Python3
102
uses: actions/setup-python@v3
103
0 commit comments