Skip to content

Merge pull request #13 from XPOZpublic/add-tiktok-namespace #7

Merge pull request #13 from XPOZpublic/add-tiktok-namespace

Merge pull request #13 from XPOZpublic/add-tiktok-namespace #7

Workflow file for this run

name: Tests
on:
push:
branches: [main]
concurrency:
group: tests-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: pip install -e ".[dev]"
- name: Run tests
env:
XPOZ_API_KEY: ${{ secrets.XPOZ_API_KEY }}
run: pytest tests/ -v