[pip] Bump setuptools from 80.10.2 to 82.0.0 (#570) #228
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Run Test | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build_and_test: | |
| runs-on: ubuntu-24.04 | |
| if: github.event_name == 'push' && github.ref == 'refs/heads/master' && github.actor == 'budtmo' | |
| steps: | |
| - name: Checkout the repo | |
| uses: actions/checkout@v6 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Set up extension | |
| run: | | |
| echo "${{ secrets.extension }}" > extension.sh | |
| chmod 700 extension.sh | |
| shell: bash | |
| - name: Build base image | |
| run: script -e -c "./app.sh build base test" | |
| - name: Build sample image | |
| run: script -e -c "./app.sh build emulator test 11.0" | |
| - name: Run unit-test | |
| run: script -e -c "./app.sh test emulator test 11.0 && sudo mv tmp/* ." | |
| - name: Publish test result | |
| run: bash <(curl -s https://codecov.io/bash) |