Skip to content

chore(ci): add testing pipeline (#44) #10

chore(ci): add testing pipeline (#44)

chore(ci): add testing pipeline (#44) #10

Workflow file for this run

name: Test, Lint, Build
on: [push]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: '1.15.x'
- name: Test
run: make test
- name: Lint
run: make lint
- name: Build server
if: always()
run: make build-binary
- name: Build cli
if: always()
run: make build-cli