From 53f8838116cdbe12c2e3dd30411bc859618c53a5 Mon Sep 17 00:00:00 2001 From: Juan Antonio Osorio Date: Thu, 23 May 2024 14:21:05 +0300 Subject: [PATCH] DNM: Call trusty through GH action Signed-off-by: Juan Antonio Osorio --- .github/workflows/test.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..f546669 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,16 @@ +--- +name: Test + +on: + pull_request: + +jobs: + call-trusty: + runs-on: ubuntu-latest + steps: + - name: Call trusty + run: | + set -e + # curl with debug + curl -v -H "Authorization: bearer ${{ secrets.GITHUB_TOKEN }}" \ + https://gh.trustypkg.dev/v1/report?package_name=uvicorn&package_type=pypi \ No newline at end of file