From dc615d9ad1b81c0e599b408842164b99d24f7362 Mon Sep 17 00:00:00 2001 From: maddalax Date: Sun, 22 Sep 2024 11:28:19 -0500 Subject: [PATCH] run tests --- .github/workflows/run-framework-tests.yml | 28 +++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/run-framework-tests.yml diff --git a/.github/workflows/run-framework-tests.yml b/.github/workflows/run-framework-tests.yml new file mode 100644 index 0000000..bcf5207 --- /dev/null +++ b/.github/workflows/run-framework-tests.yml @@ -0,0 +1,28 @@ +name: Framework Tests + +on: + push: + branches: + - '**' # Runs on any branch push + pull_request: + branches: + - '**' # Runs on any pull request to any branch + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: '1.23' # Specify the Go version you need + + - name: Install dependencies + run: go mod download + + - name: Run Go tests + run: go test ./...