Skip to content

Commit

Permalink
step
Browse files Browse the repository at this point in the history
  • Loading branch information
Konstantin8105 committed May 29, 2024
1 parent 08574df commit 40dce7a
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,21 @@ jobs:
# view version
clang --version
- name: Download
run: |
go mod download
- name: Lint
run: |
./scripts/lint.sh
- name: Build
run: |
go build -v
- name: Race test
run: go test -run=TestIntegrationScripts/tests/ctype.c -race -v -timeout=30m

- name: Coverage
run: |
go get -u github.com/wadey/gocovmerge
Expand All @@ -46,14 +57,6 @@ jobs:
uses: codecov/codecov-action@v4
with:
file: coverage.txt
name: codecov-umbrella # optional
verbose: true # optional (default = false)
token: ${{ secrets.CODECOV_ORG_TOKEN }}

- name: Build
run: |
go mod download
go build -v
- name: Race test
run: go test -run=TestIntegrationScripts/tests/ctype.c -race -v -timeout=30m
run: include_cov=coverage.txt bash < (curl -s https://codecov.io/bash)

0 comments on commit 40dce7a

Please sign in to comment.