Bump twilio from 9.4.3 to 9.4.4 #815
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "CI Tests" | |
on: | |
workflow_dispatch: | |
repository_dispatch: | |
push: | |
branches: [ main, develop ] | |
pull_request_target: | |
schedule: | |
- cron: "0 9 * * *" | |
concurrency: | |
group: helium-singleton-ci-tests | |
jobs: | |
ci: | |
name: "CI Tests" | |
env: | |
FORCE_COLOR: 1 | |
PLATFORM_TWILIO_ACCOUNT_SID: ${{ secrets.PLATFORM_TWILIO_ACCOUNT_SID }} | |
PLATFORM_TWILIO_AUTH_TOKEN: ${{ secrets.PLATFORM_TWILIO_AUTH_TOKEN }} | |
CI_AWS_S3_ACCESS_KEY_ID: ${{ secrets.CI_AWS_S3_ACCESS_KEY_ID }} | |
CI_AWS_S3_SECRET_ACCESS_KEY: ${{ secrets.CI_AWS_S3_SECRET_ACCESS_KEY }} | |
CI_TWILIO_RECIPIENT_PHONE_NUMBER: ${{ secrets.CI_TWILIO_RECIPIENT_PHONE_NUMBER }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install dependencies | |
run: make install | |
- name: Run smoke tests | |
if: ${{ github.event_name == 'pull_request' }} | |
run: make test-smoke | |
- name: Run full test suite | |
if: ${{ github.event_name != 'pull_request' }} | |
run: make test |