From eada16ed8e3792ffd18e7d26237b11cbe8bbba2c Mon Sep 17 00:00:00 2001 From: Ian Pun Date: Wed, 13 Mar 2024 12:34:49 -0700 Subject: [PATCH 1/2] add linter and tester for CI --- .github/workflows/ci.yml | 47 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..38a6583 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,47 @@ +name: CI + +# Controls when the action will run. Triggers the workflow on push or pull request +# events but only for the master branch +on: + push: + branches: + - master + - "feature/**" + pull_request: + branches: + - master + - "feature/**" + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + - uses: actions/setup-go@v4 + with: + go-version: "1.20" + - name: Run tests + run: | + make tidy + make test + - name: Upload coverage report + uses: codecov/codecov-action@v1 + with: + file: ./coverage.txt + flags: unittests + + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-go@v4 + with: + go-version: "1.20" + - uses: golangci/golangci-lint-action@v3.7.0 + with: + version: v1.52.2 + only-new-issues: true + skip-pkg-cache: true + args: --timeout=3m From cce99467cf7bd9a679fe93601a3a98f11067b651 Mon Sep 17 00:00:00 2001 From: Ian Pun Date: Wed, 13 Mar 2024 12:36:58 -0700 Subject: [PATCH 2/2] use main --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 38a6583..db2865f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,11 +5,11 @@ name: CI on: push: branches: - - master + - main - "feature/**" pull_request: branches: - - master + - main - "feature/**" jobs: