From e4f52131fb264ae93b3f6c2763b927beb93e6273 Mon Sep 17 00:00:00 2001 From: Austin Vazquez Date: Mon, 25 Mar 2024 19:03:27 +0000 Subject: [PATCH] Run project checks in CI Signed-off-by: Austin Vazquez --- .github/workflows/ci.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 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..3307aba --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,25 @@ +name: CI +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +permissions: + contents: read + pull-requests: read + +jobs: + project: + name: Project Checks + runs-on: ubuntu-latest + timeout-minutes: 5 + + steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-go@v5 + with: + go-version: "1.24" + + - uses: ./