fix: upgrade github.com/go-vgo/robotgo to v1.0.2 #1259
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: Lint application | |
| # yamllint disable-line rule:truthy | |
| on: | |
| push: | |
| branches: | |
| - dev | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| workflow_dispatch: {} | |
| env: | |
| STATIC_EXPORT: "true" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| go-lint: | |
| name: Go lint | |
| container: | |
| image: ghcr.io/${{ github.repository }}/ci-build-ubuntu:latest | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Set up Go | |
| uses: ./.github/actions/setup-go | |
| - name: Setup client web | |
| uses: ./.github/actions/setup-client-web | |
| - name: Build client project | |
| uses: ./.github/actions/build-client-web | |
| - name: Lint application | |
| uses: golangci/golangci-lint-action@v9 |