From 47d59dd808898a729d28f3bf1c3893974fbb9495 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Tue, 1 Aug 2023 11:23:30 +0530 Subject: [PATCH] chore(actions): create AUR test action --- .github/workflows/test.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/test.yaml diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml new file mode 100644 index 0000000..93a14ab --- /dev/null +++ b/.github/workflows/test.yaml @@ -0,0 +1,20 @@ +name: Test Packages +on: + push: + workflow_dispatch: + +jobs: + aur: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Setup docker CLI + uses: actions-hub/docker/cli@master + env: + SKIP_LOGIN: true + + - name: Test + run: docker build -t aur_test test/aur && docker run aur_test +