8000 Update ci.yaml by adonno · Pull Request #288 · adonno/tagreader · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Update ci.yaml #288

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 26, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 26 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,34 @@ 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:
- uses: actions/checkout@v2
- uses: esphome/build-action@v1.1.0
- 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: tagreader.yaml
yaml-file: ${{ matrix.file }}.yaml
version: ${{ matrix.esphome-version }}
0