Audit fixes: rename voiceitapi3 to voiceit3-api, sync version constan… #44
This file contains hidden or 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: API Test | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.12' | |
| - run: pip install requests | |
| - name: Run full API test | |
| env: | |
| VOICEIT_API_KEY: ${{ secrets.VOICEIT_API_KEY }} | |
| VOICEIT_API_TOKEN: ${{ secrets.VOICEIT_API_TOKEN }} | |
| run: python3 test_example.py |