Skip to content

Commit b4f6b4d

Browse files
authored
Merge pull request git-lfs#19 from git-lfs/actions-ci
Switch to GitHub Actions for CI
2 parents 66ebd5e + 8498306 commit b4f6b4d

File tree

3 files changed

+19
-9
lines changed

3 files changed

+19
-9
lines changed

.github/workflows/ci.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: CI
2+
on: [push, pull_request]
3+
4+
jobs:
5+
build-go:
6+
name: Default build
7+
strategy:
8+
matrix:
9+
go: ['1.12.x', '1.13.x', '1.14.x']
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v1
13+
- uses: actions/setup-go@v1
14+
with:
15+
go-version: ${{ matrix.go }}
16+
- run: script/cibuild

.travis.yml

-9
This file was deleted.

script/cibuild

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh -e
2+
3+
go test ./...

0 commit comments

Comments
 (0)