From ffc01e113184cc5eb66ab08db9a90fc05d6ce664 Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Thu, 27 Aug 2020 01:42:29 +0200 Subject: [PATCH] Update contributing guidelines and test workflow Signed-off-by: CrazyMax --- .github/CONTRIBUTING.md | 5 +++-- .github/workflows/test.yml | 4 ++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 3536197..51231bf 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -24,9 +24,10 @@ docker buildx bake pre-checkin # validate all code has correctly formatted and built docker buildx bake validate -``` -Note that tests target are currently known to not pass outside Github infrastructure. +# run tests +docker buildx bake test +``` Here are a few things you can do that will increase the likelihood of your pull request being accepted: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 45f6f41..f3e91a3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,6 +21,10 @@ jobs: - name: Validate run: docker buildx bake validate + - + name: Test + run: docker buildx bake test + test: runs-on: ubuntu-latest steps: