Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: '1.26.2'
go-version: '1.26.8'
- name: install ./...
run: go build ./...
env:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/ci-kotlin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: '1.26.2'
go-version: '1.26.8'
- name: install ./...
run: go install ./...
- uses: actions/checkout@v6
Expand All @@ -30,4 +30,3 @@ jobs:
working-directory: kotlin
- run: sqlc diff
working-directory: kotlin/examples

2 changes: 1 addition & 1 deletion .github/workflows/ci-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: '1.26.2'
go-version: '1.26.8'
- name: install ./...
run: go install ./...
- uses: actions/checkout@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-typescript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: '1.26.2'
go-version: '1.26.8'
- name: install ./...
run: go install ./...
- uses: actions/checkout@v6
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: '1.26.2'
go-version: '1.26.8'
- run: go build ./...
env:
CGO_ENABLED: "0"
Expand All @@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: '1.26.2'
go-version: '1.26.8'

- name: install gotestsum
run: go install gotest.tools/gotestsum@latest
Expand Down Expand Up @@ -72,3 +72,5 @@ jobs:

steps:
- uses: golang/govulncheck-action@v1
with:
go-version-input: '1.26.8'
33 changes: 33 additions & 0 deletions .github/workflows/wicked.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: wicked
on:
pull_request:
push:
branches: [main]
permissions:
contents: read
jobs:
bookstore:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
- run: make build COMMIT_HASH=v2.4.0-dev
- name: Check generated consumer and JSON contracts
working-directory: internal/endtoend/testdata
run: go test ./wicked_compat/go
- uses: actions/checkout@v6
with:
repository: Stumble/bookstore
ref: 2a7f7e396451821a8fe3054eb265037b830af68d
path: bookstore
- name: Check generated API and code
working-directory: bookstore
run: |
make sqlc SQLC="$GITHUB_WORKSPACE/bin/sqlc"
make sqlc-verify SQLC="$GITHUB_WORKSPACE/bin/sqlc"
git diff --exit-code -- pkg/repos
- name: Run runtime contracts
working-directory: bookstore
run: go test -race -count=1 -p 1 -timeout 10m ./pkg/usecases
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ __pycache__
.direnv
.devenv*
devenv.local.nix

# Local command builds.
/bin/
Loading
Loading