diff --git a/.gitea/workflows/test copy.yml b/.gitea/workflows/test copy.yml new file mode 100644 index 0000000..545fb33 --- /dev/null +++ b/.gitea/workflows/test copy.yml @@ -0,0 +1,20 @@ +name: checks +on: + - push + - pull_request + +jobs: + lint: + name: check and test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v6 + - uses: actions/setup-go@v6 + with: + go-version-file: 'go.mod' + - name: lint + run: make lint + - name: build + run: make build + - name: test + run: make test