2023-12-30 20:16:34 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2024-01-14 01:11:57 +00:00
|
|
|
- "master"
|
2023-12-30 20:16:34 +00:00
|
|
|
pull_request:
|
|
|
|
# all PRs on all branches
|
2021-01-14 22:32:24 +00:00
|
|
|
name: "tests/macos"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-12-30 19:02:10 +00:00
|
|
|
go-version: [1.21.x]
|
2021-01-14 22:32:24 +00:00
|
|
|
platform: [macos-latest]
|
|
|
|
runs-on: ${{ matrix.platform }}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-go@v2
|
|
|
|
with:
|
|
|
|
go-version: ${{ matrix.go-version }}
|
|
|
|
|
|
|
|
- name: install sqlite
|
|
|
|
run: brew install sqlite3 pkg-config
|
|
|
|
|
|
|
|
- name: Symlink source into GOPATH for devcam
|
|
|
|
run: |
|
|
|
|
mkdir $(go env GOPATH)/src
|
|
|
|
ln -s $(pwd) $(go env GOPATH)/src/perkeep.org
|
|
|
|
|
|
|
|
- name: Build and test
|
|
|
|
run: |
|
2021-12-27 20:18:08 +00:00
|
|
|
go run make.go -v=true
|
|
|
|
devcam test
|