Skip to content

Move internal code from pkg to internal #110

Move internal code from pkg to internal

Move internal code from pkg to internal #110

Workflow file for this run

name: Lint and Test
on: [push, pull_request]
jobs:
verify:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: "1.19"
- name: Checkout repo
uses: actions/checkout@v3
- name: Lint code
uses: golangci/golangci-lint-action@v3
with:
args: --timeout=5m
- name: Run tests
run: make test
- name: Build application
run: make build