From d42d78035e8bbb3ddf73983ce07a79fbdd179c98 Mon Sep 17 00:00:00 2001 From: "P. Taylor Goetz" Date: Mon, 9 Sep 2024 22:53:01 -0400 Subject: [PATCH] Sanity check commits. --- .github/workflows/ci.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..78dd16e --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,33 @@ +name: CI + +on: + push: + branches: + - '**' + tags: + - '**' + pull_request: + branches: + - '**' + +jobs: + build: + 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.20' + + - name: Install dependencies + run: go mod tidy + + - name: Run tests + run: make test + + - name: Run lint checks + run: make lint \ No newline at end of file