Skip to content

feat: implement the evaluator #67

feat: implement the evaluator

feat: implement the evaluator #67

Workflow file for this run

name: Lint, build, test
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint-build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: install dependencies
run: go get ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v5
with:
version: v1.54
- name: build
run: go build -race -v ./...
- name: test
run: |
go install github.com/onsi/ginkgo/v2/ginkgo
ginkgo run -r -race -cover