Skip to content

Commit

Permalink
Merge pull request #50 from onflow/ianthpun/ci-update
Browse files Browse the repository at this point in the history
add linter and tester for CI
  • Loading branch information
ianthpun committed Mar 13, 2024
2 parents 690ab0d + cce9946 commit 3b3ed68
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .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:
- main
- "feature/**"
pull_request:
branches:
- main
- "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

0 comments on commit 3b3ed68

Please sign in to comment.