feat(package): /p/demo/mux support query strings
#1112
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: Ensure go.mods are tidied | |
| on: | |
| push: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| pull_request: | |
| jobs: | |
| main: | |
| name: Ensure go.mods are tidied | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: ${{ inputs.go-version }} | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Check go.mod files are up to date | |
| working-directory: ${{ inputs.modulepath }} | |
| run: | | |
| make tidy VERIFY_MOD_SUMS=true |