We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db0ac94 commit df083c9Copy full SHA for df083c9
.github/workflows/go-tests.yml
@@ -0,0 +1,31 @@
1
+name: Go Tests
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
11
+jobs:
12
+ test:
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - name: Checkout code
17
+ uses: actions/checkout@v2
18
19
+ - name: Set up Go
20
+ uses: actions/setup-go@v2
21
+ with:
22
+ go-version: '^1.16'
23
24
+ - name: Navigate to singly directory
25
+ run: cd go/LinkedList/singly
26
27
+ - name: Install dependencies
28
+ run: go get -t -v ./...
29
30
+ - name: Run tests
31
+ run: go test -v ./...
0 commit comments