chore: Updated coverage badge. (#51) #93
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR Workflow | |
on: [push] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
container: golang:1.23.3-alpine3.20 | |
continue-on-error: false | |
name: checks | |
steps: | |
- name: checkout | |
id: checkout | |
uses: actions/checkout@v1 | |
- name: install prerequisites | |
run: | | |
apk add --update --no-cache --repository https://dl-4.alpinelinux.org/alpine/latest-stable/community/ build-base gcc make git librdkafka-dev pkgconf curl | |
- name: generate proto | |
run: | | |
make proto-generate | |
- name: golint-check | |
run: | | |
make golint-check | |
- name: goimports-check | |
run: | | |
make goimports-check |