Skip to content

Commit

Permalink
Add acceptance tests workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
patryk committed Jul 27, 2020
1 parent 488ea32 commit b74ee71
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/acceptance-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Acceptance Tests

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:

build:
name: Build
runs-on: ubuntu-latest
steps:

- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.14
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v2

- name: Vendor Replace Hack
run: grep 'replace .* => \./' go.mod && go mod vendor; exit 0

- name: Pre-Sweeper
run: go test ./cloudflare -v -sweep="1"

- name: Run acceptance tests
run: make testacc

- name: Post-Sweeper
run: go test ./cloudflare -v -sweep="1"

0 comments on commit b74ee71

Please sign in to comment.