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