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