A fork of https://github.com/crosspoint-reader/crosspoint-reader
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: update formatting in github workflows (#320)

**Description**:

The purpose of this change is to modify the spacing in the
`.github/workflow` files to ensure consistency.

**Related Issue(s)**:

Implements #319

Signed-off-by: Andrew Brandt <brandt.andrew89@gmail.com>

authored by

Andrew Brandt and committed by
GitHub
41bda438 82f21f3c

+3 -2
+1 -1
.github/workflows/ci.yml
··· 7 7 jobs: 8 8 build: 9 9 runs-on: ubuntu-latest 10 - 11 10 steps: 12 11 - uses: actions/checkout@v6 13 12 with: 14 13 submodules: recursive 14 + 15 15 - uses: actions/setup-python@v6 16 16 with: 17 17 python-version: '3.14'
+2 -1
.github/workflows/release.yml
··· 7 7 jobs: 8 8 build-release: 9 9 runs-on: ubuntu-latest 10 - 11 10 steps: 12 11 - uses: actions/checkout@v6 13 12 with: 14 13 submodules: recursive 14 + 15 15 - uses: actions/cache@v5 16 16 with: 17 17 path: | 18 18 ~/.cache/pip 19 19 ~/.platformio/.cache 20 20 key: ${{ runner.os }}-pio 21 + 21 22 - uses: actions/setup-python@v6 22 23 with: 23 24 python-version: '3.14'