mirror of https://github.com/perkeep/perkeep.git
33 lines
771 B
YAML
33 lines
771 B
YAML
on: [push, pull_request]
|
|
name: "tests/linux"
|
|
|
|
jobs:
|
|
test:
|
|
strategy:
|
|
matrix:
|
|
go-version: [1.x, 1.15.x]
|
|
platform: [ubuntu-latest]
|
|
runs-on: ${{ matrix.platform }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-go@v2
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
|
|
- uses: actions/cache@v2
|
|
with:
|
|
path: ~/go/pkg/mod
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
restore-keys: ${{ runner.os }}-go-
|
|
|
|
- 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: |
|
|
go run make.go -v=true -sqlite=true
|
|
devcam test -sqlite=true
|