From 4553204a481ed5e3300c633f6052c985d2b7a2bd Mon Sep 17 00:00:00 2001 From: ownerofglory Date: Thu, 15 Feb 2024 15:52:41 +0100 Subject: [PATCH] Add test pipeline --- .github/workflows/test-pipeline.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/test-pipeline.yml diff --git a/.github/workflows/test-pipeline.yml b/.github/workflows/test-pipeline.yml new file mode 100644 index 0000000..c5499aa --- /dev/null +++ b/.github/workflows/test-pipeline.yml @@ -0,0 +1,17 @@ +name: Test pipeline + +on: [push] + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Setup Go + uses: actions/setup-go@v4 + with: + go-version: '1.20.x' + - name: Install dependencies + run: go mod download + - name: Test with the Go CLI + run: go test ./... \ No newline at end of file