Skip to content

Commit

Permalink
Use Go 1.23.
Browse files Browse the repository at this point in the history
  • Loading branch information
jbub committed Oct 10, 2024
1 parent c037535 commit 56c3e5e
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 13 deletions.
12 changes: 0 additions & 12 deletions .drone.yml

This file was deleted.

30 changes: 30 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go

name: Go

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23'

- name: Lint
uses: golangci/golangci-lint-action@v6
with:
version: 'v1.60'

- name: Test
run: go test -v ./...
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/jbub/sqlcommenter

go 1.18
go 1.23

0 comments on commit 56c3e5e

Please # to comment.