Skip to content
This repository was archived by the owner on Oct 14, 2020. It is now read-only.

Commit d931080

Browse files
committed
Reformat yaml
1 parent fc9ed28 commit d931080

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

.github/workflows/ci.yaml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
on: push
2-
name: 'CI'
2+
name: "CI"
33
jobs:
44
operator:
5-
name: 'Operator'
5+
name: "Operator"
66
runs-on: ubuntu-latest
77
steps:
88
- uses: actions/checkout@master
99
- uses: actions/setup-go@v2-beta
1010
with:
11-
go-version: '1.13'
12-
- name: 'List go version'
13-
run: 'go version'
14-
- name: 'Run Lint'
11+
go-version: "1.13"
12+
- name: "List go version"
13+
run: "go version"
14+
- name: "Run Lint"
1515
run: |
1616
cd operator/
1717
go fmt ./...
@@ -27,21 +27,21 @@ jobs:
2727
with:
2828
args: ./operator/
2929
- uses: actions/delete-package-versions@v1
30-
name: 'Delete oldest operator image tag'
30+
name: "Delete oldest operator image tag"
3131
with:
3232
package-name: operator
3333
num-old-versions-to-delete: 1
3434
lurcher:
35-
name: 'Lurcher'
35+
name: "Lurcher"
3636
runs-on: ubuntu-latest
3737
steps:
3838
- uses: actions/checkout@master
3939
- uses: actions/setup-go@v2-beta
4040
with:
41-
go-version: '1.13'
42-
- name: 'List go version'
43-
run: 'go version'
44-
- name: 'Run Lint'
41+
go-version: "1.13"
42+
- name: "List go version"
43+
run: "go version"
44+
- name: "Run Lint"
4545
run: |
4646
cd operator/
4747
go fmt ./...
@@ -57,18 +57,18 @@ jobs:
5757
with:
5858
args: ./lurcher/
5959
- uses: actions/delete-package-versions@v1
60-
name: 'Delete oldest lurcher image tag'
60+
name: "Delete oldest lurcher image tag"
6161
with:
6262
package-name: lurcher
6363
num-old-versions-to-delete: 1
6464
integrations:
65-
name: 'Node Unit Tests'
65+
name: "Node Unit Tests"
6666
runs-on: ubuntu-latest
6767
steps:
6868
- uses: actions/checkout@master
69-
- name: 'list files and folders'
69+
- name: "list files and folders"
7070
run: ls
71-
- name: 'Install npm dependencies in all parser sub projects'
71+
- name: "Install npm dependencies in all parser sub projects"
7272
run: |
7373
for dir in integrations/*/parser/
7474
do
@@ -80,7 +80,7 @@ jobs:
8080
# cd back
8181
cd -
8282
done
83-
- name: 'Install npm dependencies in all persistence sub projects'
83+
- name: "Install npm dependencies in all persistence sub projects"
8484
run: |
8585
for dir in persistence/*/
8686
do
@@ -92,13 +92,13 @@ jobs:
9292
# cd back
9393
cd -
9494
done
95-
- name: 'Install npm test dependencies'
95+
- name: "Install npm test dependencies"
9696
run: |
9797
npm ci
9898
cd integrations/
9999
npm ci
100100
cd ../scbctl/
101101
npm ci
102-
- name: 'Run tests'
102+
- name: "Run tests"
103103
run: |
104104
npm test -- --ci --colors --coverage

0 commit comments

Comments
 (0)