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 09f6b75 commit 6ceba74Copy full SHA for 6ceba74
.github/workflows/go.yml
@@ -9,21 +9,21 @@ on:
9
jobs:
10
11
build:
12
- name: Build
+ name: build
13
runs-on: ubuntu-latest
14
steps:
15
16
- - name: Set up Go 1.x
+ - name: set up Go 1.x
17
uses: actions/setup-go@v2
18
with:
19
go-version: ^1.14
20
id: go
21
22
- - name: Check out code into the Go module directory
+ - name: checkout
23
uses: actions/checkout@v2
24
25
- name: modules
26
run: go mod download
27
28
- name: test
29
- run: go test -v .
+ run: go test -v ./emf
0 commit comments