name: checks on: push: branches: main pull_request: branches: main jobs: lint: name: check and test runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: go-version-file: 'go.mod' - run: make format-check - run: make build # currently doesnt work bc of docker commands will check later # run: make lint - run: make test