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 }}