|
4 | 4 | push: |
5 | 5 | branches: [master] |
6 | 6 | pull_request: |
7 | | - branches: [ master ] |
| 7 | + branches: [master] |
8 | 8 |
|
9 | 9 | jobs: |
10 | 10 | platformio: |
@@ -44,26 +44,26 @@ jobs: |
44 | 44 | - featheresp32 |
45 | 45 | - pico32 |
46 | 46 | steps: |
47 | | - - uses: actions/checkout@v2 |
48 | | - - name: Cache pip |
49 | | - uses: actions/cache@v2 |
50 | | - with: |
51 | | - path: ~/.cache/pip |
52 | | - key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} |
53 | | - restore-keys: ${{ runner.os }}-pip- |
54 | | - - name: Cache PlatformIO |
55 | | - uses: actions/cache@v2 |
56 | | - with: |
57 | | - path: ~/.platformio |
58 | | - key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }} |
59 | | - - name: Set up Python |
60 | | - uses: actions/setup-python@v2 |
61 | | - - name: Install PlatformIO |
62 | | - run: | |
63 | | - python -m pip install --upgrade pip |
64 | | - pip install --upgrade platformio |
65 | | - pip install "click!=8.0.2" # See platformio/platformio-core#4078 |
66 | | - - name: Run PlatformIO |
67 | | - run: pio ci --lib="." --board="${{matrix.board}}" |
68 | | - env: |
69 | | - PLATFORMIO_CI_SRC: examples/${{ matrix.example }} |
| 47 | + - uses: actions/checkout@v2 |
| 48 | + - name: Cache pip |
| 49 | + uses: actions/cache@v2 |
| 50 | + with: |
| 51 | + path: ~/.cache/pip |
| 52 | + key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} |
| 53 | + restore-keys: ${{ runner.os }}-pip- |
| 54 | + - name: Cache PlatformIO |
| 55 | + uses: actions/cache@v2 |
| 56 | + with: |
| 57 | + path: ~/.platformio |
| 58 | + key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }} |
| 59 | + - name: Set up Python |
| 60 | + uses: actions/setup-python@v2 |
| 61 | + - name: Install PlatformIO |
| 62 | + run: | |
| 63 | + python -m pip install --upgrade pip |
| 64 | + pip install --upgrade platformio |
| 65 | + pip install "click!=8.0.2" # See platformio/platformio-core#4078 |
| 66 | + - name: Run PlatformIO |
| 67 | + run: pio ci --lib="." --board="${{matrix.board}}" --verbose |
| 68 | + env: |
| 69 | + PLATFORMIO_CI_SRC: examples/${{ matrix.example }} |
0 commit comments