Skip to content

Commit

Permalink
remove dockerfile and simplify github actions to match ginkgo's actions
Browse files Browse the repository at this point in the history
  • Loading branch information
onsi committed Nov 19, 2021
1 parent a52b70c commit 3f8160d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 72 deletions.
32 changes: 4 additions & 28 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: test
on: [push, pull_request]

jobs:
test:
build:
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -14,30 +14,6 @@ jobs:
with:
go-version: ${{ matrix.version }}
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- run: make ginkgo
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v2
with:
go-version: '1.16'
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- run: make download
- run: make fmt
- run: make vet
- run: go mod tidy && git diff --exit-code go.mod go.sum
- run: go vet ./...
- run: go run github.com/onsi/ginkgo/v2/ginkgo -r --randomize-all --randomize-suites --race --trace --fail-on-pending --keep-going
1 change: 0 additions & 1 deletion Dockerfile

This file was deleted.

33 changes: 0 additions & 33 deletions Makefile

This file was deleted.

10 changes: 0 additions & 10 deletions docker-compose.yaml

This file was deleted.

0 comments on commit 3f8160d

Please sign in to comment.