Skip to content

Commit e849383

Browse files
committed
removing errors
1 parent 00ab095 commit e849383

1 file changed

Lines changed: 16 additions & 9 deletions

File tree

.github/workflows/tests.yml

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,24 @@
11
name: C++ local tests
22

3-
on:
4-
push:
5-
branches: [ "master" ]
6-
pull_request:
7-
branches: [ "master" ]
3+
on: [push]
84

95
jobs:
106
build:
11-
127
runs-on: ubuntu-latest
138

149
steps:
15-
- uses: actions/checkout@v4
16-
- name: make local_test
17-
run: make local_test
10+
- uses: actions/checkout@v4
11+
- uses: actions/cache@v4
12+
with:
13+
path: |
14+
~/.cache/pip
15+
~/.platformio/.cache
16+
key: ${{ runner.os }}-pio
17+
- uses: actions/setup-python@v5
18+
with:
19+
python-version: '3.11'
20+
- name: Install PlatformIO Core
21+
run: pip install --upgrade platformio
22+
23+
- name: Build PlatformIO Project
24+
run: make local_test

0 commit comments

Comments
 (0)