mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-12 05:59:14 +00:00
Bumps [actions/setup-go](https://github.com/actions/setup-go) from 4 to 5. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
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@v4
|
|
with:
|
|
lfs: 'true'
|
|
|
|
- name: Set up
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: stable
|
|
|
|
- name: Build
|
|
run: GOOS=freebsd go test -c ./...
|
|
|
|
- name: Test
|
|
uses: cross-platform-actions/action@v0.21.1
|
|
with:
|
|
operating_system: freebsd
|
|
version: '13.2'
|
|
sync_files: runner-to-vm
|
|
run: find . -name '*.test' -maxdepth 1 -exec {} -test.v \;
|