Skip to content

Commit a29a4b5

Browse files
committed
Merge branch 'main' into shiva/graph-relation
2 parents 080332d + ed9c350 commit a29a4b5

File tree

2 files changed

+18
-36
lines changed

2 files changed

+18
-36
lines changed

.github/workflows/build.yml

+18-6
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,29 @@ jobs:
2424
cd sourcecode-parser
2525
go mod download
2626
27-
- name: Build
28-
run: |
29-
cd sourcecode-parser
30-
go build -o pathfinder
31-
3227
- name: Test
3328
run: |
3429
cd sourcecode-parser
35-
go test -v ./... -coverprofile=coverage.out -covermode=atomic
30+
go test -p 2 -v ./... -coverprofile=coverage.out -covermode=atomic
3631
3732
- name: Upload coverage reports to Codecov
3833
uses: codecov/codecov-action@v4.0.1
3934
with:
4035
token: ${{ secrets.CODECOV_TOKEN }}
36+
37+
golangci:
38+
name: lint
39+
runs-on: ubuntu-latest
40+
defaults:
41+
run:
42+
working-directory: sourcecode-parser
43+
steps:
44+
- uses: actions/checkout@v4
45+
- uses: actions/setup-go@v5
46+
with:
47+
go-version: '1.23.5'
48+
- name: golangci-lint
49+
uses: golangci/golangci-lint-action@v5
50+
with:
51+
version: latest
52+
working-directory: sourcecode-parser

.github/workflows/lint.yml

-30
This file was deleted.

0 commit comments

Comments
 (0)