diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a5455a4..a43e127 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,22 +1,6 @@ name: CI on: [push,pull_request] -jobs: - lint: - name: Lint - runs-on: ubuntu-18.04 - steps: - - name: Set up Go 1.12 - uses: actions/setup-go@v1 - with: - go-version: 1.12 - id: go - - name: Code - uses: actions/checkout@v1 - - name: Intsall Golangci-lint - run: curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh| sh -s -- -b . latest - - name: Lint - run: ./golangci-lint run ./... - +jobs: test: name: Unit Testing runs-on: ${{ matrix.os }}