workflow keeps on failing

Signed-off-by: Miek Gieben <miek@miek.nl>
This commit is contained in:
Miek Gieben 2021-09-06 15:19:53 +02:00
parent d2d9f25a4b
commit d77d4d1879
1 changed files with 0 additions and 36 deletions

View File

@ -1,36 +0,0 @@
name: Check Corefiles
on:
push:
branches:
- master
jobs:
check:
runs-on: ubuntu-latest
env:
ACTION_ALLOW_UNSECURE_COMMANDS: true
steps:
-
name: Checkout
uses: actions/checkout@v2
-
name: Checkout CoreDNS
uses: actions/checkout@v2
with:
repository: coredns/coredns
path: .coredns
-
name: Setup Go Env
run: |
echo "name=GOPATH::$(go env GOPATH)" >> $GITHUB_ENV
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
shell: bash
-
name: Deps
run: |
make deps
cd .coredns; make
-
name: Test
run: |
make test