Skip to content

Commit

Permalink
Also run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lanwin committed Feb 6, 2024
1 parent 11d9878 commit 4afe1c6
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
framework-arduino:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v3
- uses: esphome/[email protected]
id: esphome-build
with:
Expand All @@ -13,8 +13,20 @@ jobs:
framework-espidf:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v3
- uses: esphome/[email protected]
id: esphome-build
with:
yaml_file: .github/conf_esp_idf.yml
yaml_file: .github/conf_esp_idf.yml

tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install cpp
run: sudo apt-get install -y build-essential
- name: chmod
run: sudo chmod +x test/*.sh
- name: runtest
run: sudo test/test.sh

0 comments on commit 4afe1c6

Please sign in to comment.