fix(web): read all clipboard flavors so iOS paste keeps the URL #47
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: ci | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.26' | |
| cache: true | |
| - name: Build | |
| run: make build | |
| - name: Test | |
| run: make test | |
| env: | |
| # CI Docker is available for testcontainers | |
| DOCKER_HOST: unix:///var/run/docker.sock | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.26' | |
| cache: true | |
| - uses: golangci/golangci-lint-action@v6 | |
| with: | |
| version: v1.64.8 |