Skip to content

Support LFS in CI

Support LFS in CI #11

Workflow file for this run

name: Test
on: push
jobs:
build-and-test:
runs-on: ubuntu-latest
timeout-minutes: 600
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 0
lfs: true
- name: Cache dependencies
uses: actions/cache@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: './go.mod'
- name: Build
run: go build
- name: Test
run: go test