Skip to content

core: just in time compilation #180

core: just in time compilation

core: just in time compilation #180

Workflow file for this run

name: Go
on:
push:
branches: ["master"]
paths-ignore:
- "docs/**"
- "README.md"
pull_request:
branches: ["master"]
paths-ignore:
- "docs/**"
- "README.md"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "stable"
- name: Build
run: go build ./...
- name: Unit Test
run: go test ./... -v