From f3a1b3550bae7e8a5297c6477838aedeb639f500 Mon Sep 17 00:00:00 2001 From: Chia Automation Date: Thu, 21 Mar 2024 18:11:02 +0000 Subject: [PATCH] Update go-test --- .github/workflows/go-test.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/go-test.yml diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml new file mode 100644 index 0000000..0a8cb06 --- /dev/null +++ b/.github/workflows/go-test.yml @@ -0,0 +1,19 @@ +name: Go Test +on: + push: + branches: + - main + pull_request: + +jobs: + test: + runs-on: ubuntu-latest + container: golang:1 + steps: + - name: Mark git directory safe + uses: Chia-Network/actions/git-mark-workspace-safe@main + + - uses: actions/checkout@v4 + + - name: Test + run: make test