Skip to content

Refactor DSL engine and add lint/CI tooling #1

Refactor DSL engine and add lint/CI tooling

Refactor DSL engine and add lint/CI tooling #1

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Build
run: make build
- name: Fmt Check
run: make fmt-check
- name: Unit Tests
run: make unit
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
args: --config=.golangci.yml
- name: Self-Binary Check
run: make self-binary-check