1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00

Run integration tests as part of build checks (#928)

This commit is contained in:
Max Horstmann
2020-11-03 07:53:59 -05:00
committed by GitHub
parent d219941059
commit 866232e0fb

View File

@ -22,5 +22,17 @@ jobs:
- name: Run unit tests
run: go test ./...
- name: Run integration tests for BIND provider
working-directory: integrationTest
run: go test -v -verbose -provider BIND
- name: Run integration test for ROUTE53 provider
working-directory: integrationTest
run: go test -v -verbose -provider ROUTE53
env:
R53_DOMAIN: dnscontroltest-r53.com
R53_KEY_ID: ${{ secrets.R53_KEY_ID }}
R53_KEY: ${{ secrets.R53_KEY }}
- name: Build binaries
run: go run build/build.go