From 0dfeba6a2f806aa1a6ed08f3f922bccce4ea7ec4 Mon Sep 17 00:00:00 2001 From: Kslr Date: Fri, 19 Jun 2020 21:19:37 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9C=A8=20actions=20=E6=B7=BB=E5=8A=A0=20lint?= =?UTF-8?q?=20=E5=92=8C=20test=20(#21)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * actions add lint and test * Only check new code --- .github/workflows/linter.yml | 21 +++++++++++++++++++++ .github/workflows/test.yml | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+) create mode 100644 .github/workflows/linter.yml create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml new file mode 100644 index 00000000..85611e6b --- /dev/null +++ b/.github/workflows/linter.yml @@ -0,0 +1,21 @@ +name: Lint Code Base + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + name: Lint Code Base + runs-on: ubuntu-latest + + steps: + - name: Checkout Code + uses: actions/checkout@v2 + + - name: Lint Code Base + uses: github/super-linter@v2.0.0 + env: + VALIDATE_ALL_CODEBASE: false \ No newline at end of file diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000..fbc4c656 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,34 @@ +name: Test + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + + build: + name: Test + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [windows-latest, ubuntu-latest, macos-latest] + + steps: + + - name: Set up Go 1.x + uses: actions/setup-go@v2 + with: + go-version: ^1.14 + id: go + + - name: Check out code into the Go module directory + uses: actions/checkout@v2 + + - name: Get dependencies + run: | + go get -v -t -d ./... + + - name: Test + run: go test -parallel 1 -timeout 6h -v ./...