File tree 4 files changed +41
-4
lines changed
4 files changed +41
-4
lines changed Original file line number Diff line number Diff line change
1
+ # Visit https://fossa.com to learn more
2
+
3
+ version : 2
4
+ cli :
5
+ server : https://app.fossa.com
6
+ fetcher : custom
7
+ project :
[email protected] :rogchap/v8go.git
8
+ analyze :
9
+ modules :
10
+ - name : v8go
11
+ type : go
12
+ target : rogchap.com/v8go
13
+ path : .
Original file line number Diff line number Diff line change @@ -12,16 +12,32 @@ jobs:
12
12
name : Tests on ${{ matrix.go-version }} ${{ matrix.platform }}
13
13
strategy :
14
14
matrix :
15
- go-version : [1.12.17, 1.15.6 ]
15
+ go-version : [1.12.17, 1.15.7 ]
16
16
platform : [ubuntu-latest, macos-latest]
17
17
runs-on : ${{ matrix.platform }}
18
18
19
19
steps :
20
20
- name : Install Go
21
- uses : actions/setup-go@v1
21
+ uses : actions/setup-go@v2
22
22
with :
23
23
go-version : ${{ matrix.go-version }}
24
24
- name : Checkout
25
- uses : actions/checkout@v1
25
+ uses : actions/checkout@v2
26
26
- name : Go Test
27
- run : go test -v -cover ./...
27
+ run : go test -v -coverprofile c.out ./...
28
+ - name : Upload coverage to Codecov
29
+ uses : codecov/codecov-action@v1
30
+ env :
31
+ OS : ${{ matrix.platform }}
32
+ GO : ${{ matrix.go-version }}
33
+ with :
34
+ files : ./c.out
35
+ env_vars : OS,GO
36
+ - name : Add GOPATH to GITHUB_ENV
37
+ run : echo "GOPATH=$(go env GOPATH)" >>"$GITHUB_ENV"
38
+ - name : Scan and upload FOSSA data
39
+ run : |
40
+ curl -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/master/install.sh | sudo bash
41
+ fossa analyze
42
+ env :
43
+ FOSSA_API_KEY : ${{ secrets.FOSSA_API_KEY }}
Original file line number Diff line number Diff line change 6
6
.gclient_entries
7
7
8
8
deps /darwin-x86_64 /libv8_debug.a
9
+
10
+ c.out
Original file line number Diff line number Diff line change 5
5
[ ![ Go Reference] ( https://pkg.go.dev/badge/rogchap.com/v8go.svg )] ( https://pkg.go.dev/rogchap.com/v8go )
6
6
[ ![ CI] ( https://github.com/rogchap/v8go/workflows/CI/badge.svg )] ( https://github.com/rogchap/v8go/actions?query=workflow%3ACI )
7
7
![ V8 Build] ( https://github.com/rogchap/v8go/workflows/V8%20Build/badge.svg )
8
+ [ ![ codecov] ( https://codecov.io/gh/rogchap/v8go/branch/master/graph/badge.svg?token=VHZwzGm3dV )] ( https://codecov.io/gh/rogchap/v8go )
9
+ [ ![ FOSSA Status] ( https://app.fossa.com/api/projects/custom%2B22862%2Fgit%40github.com%3Arogchap%2Fv8go.git.svg?type=shield )] ( https://app.fossa.com/projects/custom%2B22862%2Fgit%40github.com%3Arogchap%2Fv8go.git?ref=badge_shield )
8
10
[ ![ #v8go Slack Channel] ( https://img.shields.io/badge/slack-%23v8go-4A154B?logo=slack )] ( https://gophers.slack.com/channels/v8go )
9
11
10
12
<img src =" gopher.jpg " width =" 200px " alt =" V8 Gopher based on original artwork from the amazing Renee French " />
@@ -124,6 +126,10 @@ exception.
124
126
125
127
This project also aims to keep up-to-date with the latest (stable) release of V8.
126
128
129
+ ## License
130
+
131
+ [ ![ FOSSA Status] ( https://app.fossa.com/api/projects/custom%2B22862%2Fgit%40github.com%3Arogchap%2Fv8go.git.svg?type=large )] ( https://app.fossa.com/projects/custom%2B22862%2Fgit%40github.com%3Arogchap%2Fv8go.git?ref=badge_large )
132
+
127
133
## Development
128
134
129
135
### Upgrading the V8 binaries
You can’t perform that action at this time.
0 commit comments