Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
up
Browse files Browse the repository at this point in the history
t4kamura committed Apr 20, 2024
1 parent e0a12bf commit d10bc4c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: CI
on:
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup golang
uses: actions/setup-go@v5
with:
go-version: 1.21.1
- name: Build
run: go build -v ./...
- name: Test
run: test ./...
- name: Vet
run: go vet ./...

0 comments on commit d10bc4c

Please sign in to comment.