Skip to content

Commit

Permalink
Merge pull request #7 from matsuri-tech/feat/update-go
Browse files Browse the repository at this point in the history
feat: update go version and setup github actions
  • Loading branch information
0num4 authored May 7, 2024
2 parents d0430aa + f1a97b5 commit a371366
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
21 changes: 21 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: go test
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: ./go.mod
- name: Run tests
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/matsuri-tech/public-key-handler

go 1.12
go 1.22.0

0 comments on commit a371366

Please sign in to comment.