forked from luka6000/tagreader
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (30 loc) · 851 Bytes
/
Copy pathci.yaml
File metadata and controls
35 lines (30 loc) · 851 Bytes
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
name: CI
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
ci:
name: Building ${{ matrix.file }} / ${{ matrix.esphome-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
max-parallel: 3
matrix:
#### Modify below here to match your project ####
file:
- tagreader
esphome-version:
- stable
- beta
- dev
#### Modify above here to match your project ####
steps:
- name: Checkout source code
uses: actions/checkout@v4.2.2
- name: ESPHome ${{ matrix.esphome-version }}
uses: esphome/build-action@v6.0.0
with:
yaml-file: ${{ matrix.file }}.yaml
version: ${{ matrix.esphome-version }}