Skip to content

WIP

WIP #23

Workflow file for this run

name: CI
on:
push:
# branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
name: Build
strategy:
matrix:
runs-on:
- macos-14
- ubuntu-22.04
fail-fast: false
runs-on: ${{ matrix.runs-on }}
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: "1.22"
- run: ls -l /Users/runner/work/lilliput/lilliput/deps/osx/arm64/share/OpenCV/3rdparty/lib || true
- run: ls -l /Users/runner/work/lilliput/lilliput/deps/linux/arm64/share/OpenCV/3rdparty/lib || true
- name: Build
run: go build
- name: Test
run: go test
- name: Examples
run: |
cd examples
go build