diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..e6bef73 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,18 @@ +name: CI + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + go: [ '1.15', '1.14' ] + name: Go ${{ matrix.go }} Tests + steps: + - uses: actions/checkout@v2 + - name: Setup go + uses: actions/setup-go@v2 + with: + go-version: ${{ matrix.go }} + - run: go test \ No newline at end of file diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index ac89140..0000000 --- a/.travis.yml +++ /dev/null @@ -1,11 +0,0 @@ -arch: - - amd64 - - ppc64le -language: go - -go: - - 1.x - -os: - - linux - - osx