Skip to content

Commit

Permalink
feat: ci test
Browse files Browse the repository at this point in the history
  • Loading branch information
kyong0612 committed Dec 31, 2023
1 parent 6d932a9 commit 8be2e57
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: test
on:
pull_request:
branches:
- '**'
workflow_dispatch:

permissions:
contents: read
# Optional: allow read access to pull request. Use with `only-new-issues` option.
# pull-requests: read
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.21
- uses: actions/checkout@v3

- name: testing
run:
go test ./...

0 comments on commit 8be2e57

Please sign in to comment.