Browse Source

Add github action

gofuzz^2
negbie 6 years ago
parent
commit
d779d948c8
2 changed files with 12 additions and 1 deletions
  1. +12
    -0
      .github/workflows/test.yml
  2. +0
    -1
      .gitignore

+ 12
- 0
.github/workflows/test.yml View File

@ -0,0 +1,12 @@
on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.13.x, 1.14.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Test
run: go test $(go list ./... | grep -Ev 'dialog|example|fone|util')

+ 0
- 1
.gitignore View File

@ -1,6 +1,5 @@
*.test
/fone/fone
.*
/sftp-config.json
/main
/main.go

Loading…
Cancel
Save