From 2fbdcec8ca3bd8a5b5f809ab263c687707855096 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Velez?= <108719853+QuaNilo@users.noreply.github.com> Date: Sun, 3 Dec 2023 21:41:11 +0000 Subject: [PATCH] Update tests.yml --- .github/workflows/tests.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c3b799f..1b6789f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -24,4 +24,15 @@ jobs: run: chmod +x gradlew - name: Run Unit Tests - run: ./gradlew test \ No newline at end of file + run: ./gradlew test + + + - name: 'Sending SMS Notification' + uses: twilio-labs/actions-sms@v1 + with: + fromPhoneNumber: ${{secrets.TWILIO_FROM_NUMBER}} + toPhoneNumber: ${{secrets.XICO_NUMBER}} + message: 'Olá Francisco' + env: + TWILIO_ACCOUNT_SID: ${{ secrets.TWILIO_ACCOUNT_SID }} + TWILIO_AUTH_TOKEN: ${{ secrets.TWILIO_AUTH_TOKEN }}