Skip to content

Fix imposters search #75

Fix imposters search

Fix imposters search #75

Workflow file for this run

name: Test & Build
on:
push:
paths:
- 'cmd/**'
- 'internal/**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.20']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Run Tests...
run: go test -v -vet=off -race ./...
- name: Build...
run: go build -race cmd/killgrave/main.go