mirror of https://github.com/perkeep/perkeep.git
36 lines
721 B
YAML
36 lines
721 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- "master"
|
|
pull_request:
|
|
# all PRs on all branches
|
|
name: "tests/linux"
|
|
|
|
jobs:
|
|
test:
|
|
strategy:
|
|
matrix:
|
|
go-version: [1.21.x]
|
|
platform: [ubuntu-latest]
|
|
runs-on: ${{ matrix.platform }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
|
|
- uses: actions/cache@v3
|
|
with:
|
|
path: ~/go/pkg/mod
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
restore-keys: ${{ runner.os }}-go-
|
|
|
|
- name: Install fuse
|
|
run: sudo apt-get install --yes fuse3
|
|
|
|
- name: Build and test
|
|
run: |
|
|
go run make.go -v=true
|
|
devcam test
|