mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-12 14:09:13 +00:00
30 lines
538 B
YAML
30 lines
538 B
YAML
name: BSD
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: macos-12
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
lfs: 'true'
|
|
|
|
- name: Set up
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: stable
|
|
|
|
- name: Build
|
|
run: GOOS=freebsd go test -c ./...
|
|
|
|
- name: Test
|
|
uses: cross-platform-actions/action@v0.20.0
|
|
with:
|
|
operating_system: freebsd
|
|
version: '13.2'
|
|
sync_files: runner-to-vm
|
|
run: find . -name '*.test' -maxdepth 1 -exec {} -test.v \;
|