Skip to content

Commit 3f8160d

Browse files
committedNov 19, 2021
remove dockerfile and simplify github actions to match ginkgo's actions
1 parent a52b70c commit 3f8160d

File tree

4 files changed

+4
-72
lines changed

4 files changed

+4
-72
lines changed
 

‎.github/workflows/test.yml

+4-28
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: test
33
on: [push, pull_request]
44

55
jobs:
6-
test:
6+
build:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
@@ -14,30 +14,6 @@ jobs:
1414
with:
1515
go-version: ${{ matrix.version }}
1616
- uses: actions/checkout@v2
17-
- uses: actions/cache@v2
18-
with:
19-
path: |
20-
~/.cache/go-build
21-
~/go/pkg/mod
22-
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
23-
restore-keys: |
24-
${{ runner.os }}-go-
25-
- run: make ginkgo
26-
lint:
27-
runs-on: ubuntu-latest
28-
steps:
29-
- uses: actions/setup-go@v2
30-
with:
31-
go-version: '1.16'
32-
- uses: actions/checkout@v2
33-
- uses: actions/cache@v2
34-
with:
35-
path: |
36-
~/.cache/go-build
37-
~/go/pkg/mod
38-
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
39-
restore-keys: |
40-
${{ runner.os }}-go-
41-
- run: make download
42-
- run: make fmt
43-
- run: make vet
17+
- run: go mod tidy && git diff --exit-code go.mod go.sum
18+
- run: go vet ./...
19+
- run: go run github.com/onsi/ginkgo/v2/ginkgo -r --randomize-all --randomize-suites --race --trace --fail-on-pending --keep-going

‎Dockerfile

-1
This file was deleted.

‎Makefile

-33
This file was deleted.

‎docker-compose.yaml

-10
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.