From e42e4728c793ff79a5c836c620b20b8d67cfdfbb Mon Sep 17 00:00:00 2001 From: Daisuke Kanda Date: Tue, 25 Jun 2024 22:07:16 +0000 Subject: [PATCH] add gh action test.yml Signed-off-by: Daisuke Kanda --- .github/workflows/test.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..c145bdd --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,16 @@ +name: Test +on: + push: + branches: + - main + pull_request: + +jobs: + test: + name: Test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 + - name: Test + run: make test