From 3722611882ff1462c279045e62747850130113d6 Mon Sep 17 00:00:00 2001 From: Fszta Date: Tue, 2 Jun 2026 21:18:32 +0200 Subject: [PATCH] ci: add basic branch ci run test and linter --- .github/workflows/branch.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/branch.yml diff --git a/.github/workflows/branch.yml b/.github/workflows/branch.yml new file mode 100644 index 0000000..dc28aba --- /dev/null +++ b/.github/workflows/branch.yml @@ -0,0 +1,22 @@ +name: Branch CI + +on: + pull_request: + branches: [main] + +jobs: + ci: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-go@v5 + with: + go-version-file: go.mod + + - uses: golangci/golangci-lint-action@v6 + with: + version: latest + + - name: Test + run: make test