diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml new file mode 100644 index 0000000..f305699 --- /dev/null +++ b/.forgejo/workflows/test.yml @@ -0,0 +1,16 @@ +on: + pull_request: + types: [opened, synchronize] + +jobs: + lint_job: + runs-on: raw + steps: + - name: Check out repository + uses: actions/checkout@v3 + + - name: Run linters + uses: https://github.com/wearerequired/lint-action@v2 + with: + gofmt: true + golint: true \ No newline at end of file