diff --git a/.gitea/workflows/attempt-build.yaml b/.gitea/workflows/attempt-build.yaml index 8660558..b200a38 100644 --- a/.gitea/workflows/attempt-build.yaml +++ b/.gitea/workflows/attempt-build.yaml @@ -7,9 +7,20 @@ on: jobs: build: runs-on: ubuntu-latest - steps: - - name: Check out repository code - uses: actions/checkout@v4 - - name: Run make - run: make + steps: + - uses: actions/checkout@v4 + - uses: actions/cache@v4 + with: + path: | + ~/.cache/pip + ~/.platformio/.cache + key: ${{ runner.os }}-pio + - uses: actions/setup-python@v5 + with: + python-version: '3.11' + - name: Install PlatformIO Core + run: pip install --upgrade platformio + + - name: Build PlatformIO Project + run: pio run