Skip to content

Commit b08e287

Browse files
Merge pull request #88 from budougumi0617/fix/errors-in-build-and-integration
fix/errors in build and integration
2 parents 98166a2 + 6c3d179 commit b08e287

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
go-version: '>=1.18'
3838
- uses: actions/checkout@v3
3939
- run: |
40-
go install github.com/k0kubun/sqldef/cmd/mysqldef@latest
40+
go install github.com/sqldef/sqldef/cmd/mysqldef@latest
4141
mysqldef -u todo -p todo -h 127.0.0.1 -P 3306 todo < ./_tools/mysql/schema.sql
4242
- run: go test ./... -coverprofile=coverage.out
4343
- name: report coverage

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ CMD ["./app"]
2121

2222
# ---------------------------------------------------
2323

24-
FROM golang:1.18.2 as dev
24+
FROM golang:1.22 as dev
2525
WORKDIR /app
26-
RUN go install github.com/cosmtrek/air@latest
27-
CMD ["air"]
26+
RUN go install github.com/air-verse/air@latest
27+
CMD ["air"]

0 commit comments

Comments
 (0)