Skip to content

<fix>:<Fixed the bug where the delete button becomes unclickable after being clicked once.> #6

<fix>:<Fixed the bug where the delete button becomes unclickable after being clicked once.>

<fix>:<Fixed the bug where the delete button becomes unclickable after being clicked once.> #6

Workflow file for this run

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