We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 34d1ab7 + 40d699c commit 8c0aa6dCopy full SHA for 8c0aa6d
.github/workflows/test.yml
@@ -0,0 +1,34 @@
1
+{
2
+ "name": "go test",
3
+ "on": ["push", "pull_request"],
4
+ "jobs": {
5
+ "test": {
6
+ "strategy": {
7
+ "matrix": {
8
+ "go-version": ["1.16.x"],
9
+ "os": ["ubuntu-latest", "macos-latest", "windows-latest"]
10
+ }
11
+ },
12
+ "runs-on": "${{ matrix.os }}",
13
+ "steps": [
14
+ {
15
+ "name": "Install Go",
16
+ "uses": "actions/setup-go@v2",
17
+ "with": {"go-version": "${{ matrix.go-version }}"}
18
19
20
+ "name": "Checkout code",
21
+ "uses": "actions/checkout@v2"
22
23
24
+ "name": "Test",
25
+ "run": "go test -v ./..."
26
27
28
+ "name": "Install",
29
+ "run": "go install -v ./cmd/toml-test"
30
31
+ ]
32
33
34
+}
0 commit comments