<fix>:<Fixed the bug where the delete button becomes unclickable after being clicked once.> #6
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: CI | |
| on: | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| branches: [main, master] | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| - name: Install dependencies | |
| run: sudo apt-get install -y gcc libsqlite3-dev | |
| - name: Build | |
| run: make build | |
| - name: Test with coverage | |
| run: make test-coverage | |
| - name: Build Docker image | |
| run: docker build . | |
| - name: Install golangci-lint | |
| run: curl -sSfL https://golangci-lint.run/install.sh | sh -s -- -b "$(go env GOPATH)/bin" v2.12.2 | |
| - name: Lint | |
| run: make lint | |
| continue-on-error: true |