Skip to content

Commit

Permalink
add ci test
Browse files Browse the repository at this point in the history
  • Loading branch information
toshiki-otaka committed Aug 26, 2023
1 parent 76c91cd commit c54218a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: test
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- name: setup go
uses: actions/setup-go@v4
with:
go-version-file: "./go.mod"
- name: checkout
uses: actions/checkout@v3
- name: run test
run: go test -v ./...

0 comments on commit c54218a

Please sign in to comment.