mirror of
https://github.com/kubernetes-sigs/external-dns.git
synced 2026-05-05 22:56:09 +02:00
fix(log testing): re-use logger library testing functionality (#5370)
Signed-off-by: ivan katliarchuk <ivan.katliarchuk@gmail.com>
This commit is contained in:
parent
1ac744f304
commit
0cc2c50c6c
10
.github/workflows/ci.yaml
vendored
10
.github/workflows/ci.yaml
vendored
@ -17,7 +17,11 @@ jobs:
|
||||
checks: write # to create a new check based on the results (shogo82148/actions-goveralls)
|
||||
|
||||
name: Build
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
# tests for target OS
|
||||
os: [ubuntu-latest, macos-latest]
|
||||
steps:
|
||||
|
||||
- name: Check out code into the Go module directory
|
||||
@ -38,7 +42,7 @@ jobs:
|
||||
run: |
|
||||
apt update
|
||||
apt install -y make gcc libc-dev git
|
||||
if: github.actor == 'nektos/act'
|
||||
if: github.actor == 'nektos/act' && matrix.os == 'ubuntu-latest'
|
||||
|
||||
- name: Test
|
||||
run: make test
|
||||
@ -47,5 +51,5 @@ jobs:
|
||||
uses: shogo82148/actions-goveralls@v1
|
||||
with:
|
||||
path-to-profile: profile.cov
|
||||
if: github.actor != 'nektos/act'
|
||||
if: github.actor != 'nektos/act' && matrix.os == 'ubuntu-latest'
|
||||
continue-on-error: true
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user