remove unused task #109
Workflow file for this run
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: test the system update flow | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - test_package_update | |
| - test_package_update_rebase | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build-and-update: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| - name: Run dep package update test | |
| env: | |
| GH_TOKEN: ${{ secrets.ARDUINOBOT_TOKEN }} | |
| run: | | |
| go test -count=1 --timeout 30m -v ./internal/e2e/updatetest -- --arch amd64 |