From 82a3eb36d66d4a6f385cdd888bac84d72530354d Mon Sep 17 00:00:00 2001 From: Adnan Gulegulzar Date: Tue, 11 Jun 2024 21:18:49 -0400 Subject: [PATCH] install test workflow created --- .github/workflows/installation-test.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/installation-test.yaml diff --git a/.github/workflows/installation-test.yaml b/.github/workflows/installation-test.yaml new file mode 100644 index 0000000..46551fb --- /dev/null +++ b/.github/workflows/installation-test.yaml @@ -0,0 +1,16 @@ +name: Installation Tests + +on: + release: + types: [published] + +jobs: + tag: + runs-on: ubuntu-latest + steps: + - name: print tag + run: | + echo "New tag: ${{ github.event.release.tag_name }}" + - name: test brew + run: | + brew -v \ No newline at end of file