Skip to content

Commit

Permalink
feat(workflow): add pacake test
Browse files Browse the repository at this point in the history
  • Loading branch information
fumiama committed Apr 18, 2024
1 parent 30816e9 commit b7402ff
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: test
on: [ push, pull_request ]

jobs:
test_ubuntu:
name: Run Test on Ubuntu 🧪
runs-on: ubuntu-latest
steps:

- name: Checkout Code
uses: actions/checkout@v4

- name: Setup Go Environment
uses: actions/setup-go@master

- name: Run Go Test
run: go test $(go list ./...)

0 comments on commit b7402ff

Please sign in to comment.