Skip to content

Commit 14c0b28

Browse files
committed
add our branch
Signed-off-by: Tobias Gurtzick <magic@wizardtales.com>
1 parent 6968cf3 commit 14c0b28

File tree

1 file changed

+20
-18
lines changed

1 file changed

+20
-18
lines changed

.github/workflows/ci.yml

Lines changed: 20 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@ on:
33
push:
44
branches:
55
- master
6+
- fork
67
pull_request:
78
branches:
89
- master
10+
- fork
911
jobs:
1012
build:
1113
strategy:
@@ -22,12 +24,12 @@ jobs:
2224
name: build (${{ matrix.os }}/go-${{ matrix.go-version }})
2325
runs-on: ${{ matrix.os }}-latest
2426
steps:
25-
- uses: actions/checkout@v2
26-
- uses: actions/setup-go@v2
27-
with:
28-
go-version: ${{ matrix.go-version }}
27+
- uses: actions/checkout@v2
28+
- uses: actions/setup-go@v2
29+
with:
30+
go-version: ${{ matrix.go-version }}
2931

30-
- run: make build
32+
- run: make build
3133

3234
test:
3335
strategy:
@@ -57,14 +59,14 @@ jobs:
5759
MINIO_ROOT_USER: minioadmin
5860
MINIO_ROOT_PASSWORD: minioadmin
5961
steps:
60-
- uses: actions/checkout@v2
61-
- uses: actions/setup-go@v2
62-
with:
63-
go-version: ${{ matrix.go-version }}
62+
- uses: actions/checkout@v2
63+
- uses: actions/setup-go@v2
64+
with:
65+
go-version: ${{ matrix.go-version }}
6466

65-
- run: make test
66-
env:
67-
S5CMD_TEST_ENDPOINT_URL: ${{ (matrix.os == 'ubuntu') && 'http://localhost:45677' || '' }}
67+
- run: make test
68+
env:
69+
S5CMD_TEST_ENDPOINT_URL: ${{ (matrix.os == 'ubuntu') && 'http://localhost:45677' || '' }}
6870
qa:
6971
strategy:
7072
matrix:
@@ -77,10 +79,10 @@ jobs:
7779

7880
runs-on: ${{ matrix.os }}-latest
7981
steps:
80-
- uses: actions/checkout@v2
81-
- uses: actions/setup-go@v2
82-
with:
83-
go-version: ${{ matrix.go-version }}
82+
- uses: actions/checkout@v2
83+
- uses: actions/setup-go@v2
84+
with:
85+
go-version: ${{ matrix.go-version }}
8486

85-
- run: make bootstrap
86-
- run: make check
87+
- run: make bootstrap
88+
- run: make check

0 commit comments

Comments
 (0)