-
-
Notifications
You must be signed in to change notification settings - Fork 41
55 lines (47 loc) · 1.05 KB
/
validate.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: Validate
on:
pull_request:
push:
branches:
- main
schedule:
- cron: "0 0 * * 6"
jobs:
format_check:
name: "Check formatting"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: 'clang-format check'
uses: jidicula/[email protected]
with:
clang-format-version: 18
build_examples:
name: "Build example"
runs-on: ubuntu-latest
needs:
- format_check
strategy:
matrix:
example:
- basic
- basic_i2c
- memory_dump
- read_write
idf_ver:
- release-v5.0
- release-v5.1
- release-v5.2
- release-v5.3
idf_target:
- esp32
steps:
- uses: actions/checkout@v4
with:
path: rc522
- name: Build
uses: espressif/esp-idf-ci-action@v1
with:
path: rc522/examples/${{ matrix.example }}
esp_idf_version: ${{ matrix.idf_ver }}
target: ${{ matrix.idf_target }}