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: