diff --git a/.github/workflows/test_build.yml b/.github/workflows/test_build.yml index 8d6ec41..d644f3e 100644 --- a/.github/workflows/test_build.yml +++ b/.github/workflows/test_build.yml @@ -1,33 +1,20 @@ on: push: - branches: [ master ] + branches: + - main + - develop pull_request: - branches: [ master ] + branches: + - main + - develop jobs: test: - runs-on: ubuntu-latest - steps: - name: Checkout project uses: actions/checkout@v3 - # - name: Cache pip - # uses: actions/cache@v3 - # with: - # path: ~/.cache/pip - # key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} - # restore-keys: | - # ${{ runner.os }}-pip- - - # # this cache the platformio binaries and not the .pio folder - # - name: Cache PlatformIO - # uses: actions/cache@v3 - # with: - # path: ~/.platformio - # key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }} - - name: Set up Python uses: actions/setup-python@v3