From 5b43748afb276fe0a5c004a44006317c146665e7 Mon Sep 17 00:00:00 2001 From: Ron Green <11993626+georgettica@users.noreply.github.com> Date: Fri, 20 Oct 2023 23:45:57 +0300 Subject: [PATCH] chore(gha): add fake workflow this would make my PR #44 run the gha I wrote and won't break current users workflow --- .github/.github/workflows/golang.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/.github/workflows/golang.yaml diff --git a/.github/.github/workflows/golang.yaml b/.github/.github/workflows/golang.yaml new file mode 100644 index 0000000..72c3740 --- /dev/null +++ b/.github/.github/workflows/golang.yaml @@ -0,0 +1,15 @@ +name: Full CI for go code +on: + push: + branches: + - main + pull_request: + +permissions: + contents: read +jobs: + golangci: + name: lint + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 \ No newline at end of file