From c250dfcd923fa3df590d3837da112dd14dd651da Mon Sep 17 00:00:00 2001 From: Benny Zlotnik Date: Tue, 19 Dec 2023 11:57:45 +0200 Subject: [PATCH] Run tests in github action Signed-off-by: Benny Zlotnik --- .github/workflows/go-test.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/go-test.yaml diff --git a/.github/workflows/go-test.yaml b/.github/workflows/go-test.yaml new file mode 100644 index 000000000..eb3bc6f02 --- /dev/null +++ b/.github/workflows/go-test.yaml @@ -0,0 +1,13 @@ +name: go-test +on: + pull_request: + branches: + - main +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Test with the Go CLI + run: go test ./... + \ No newline at end of file