name: Compile run-name: ${{ github.actor }} is compiling on: [push] jobs: Compile: runs-on: ubuntu-latest steps: - name: Setup PlatformIO run: | apt update apt -y install platformio - name: Compile run: | cd ${{ github.workspace }} pio run - run: echo "Done."