Skip to content

Add SLEEP instruction #23

Add SLEEP instruction

Add SLEEP instruction #23

Workflow file for this run

name: Zeonica Test
on: push
jobs:
compile:
name: Compilation
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "stable"
- name: Build
run: go build ./...
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
skip-pkg-cache: true
version: "latest"
args: --timeout=10m
- name: Install Ginkgo
run: go install github.com/onsi/ginkgo/v2/ginkgo
- name: Unit Test
run: ginkgo -r