From 4a8f81e559190d7df006b40b6a7cedd133ce6767 Mon Sep 17 00:00:00 2001 From: jld3103 Date: Fri, 29 Sep 2023 00:08:51 +0200 Subject: [PATCH] feat(tool): Add CI workflow to find untested Neon APIs Signed-off-by: jld3103 --- .github/workflows/neon.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/neon.yml diff --git a/.github/workflows/neon.yml b/.github/workflows/neon.yml new file mode 100644 index 00000000..e1626f0c --- /dev/null +++ b/.github/workflows/neon.yml @@ -0,0 +1,21 @@ +name: Neon +on: + push: + branches: + - main + pull_request: + +concurrency: + group: neon-${{ github.head_ref || github.run_id }} + cancel-in-progress: true + +jobs: + untested-apis: + name: Untested APIs + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 + + - name: Find untested Neon APIs + run: ./tool/find-untested-neon-apis.sh