Add support for using stream as the endpoint to download media #157
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: Package tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
run-tests: | |
runs-on: ubuntu-24.04 | |
steps: | |
- run: sudo apt-get install -y just | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11.9" | |
- uses: actions/cache@v3 | |
with: | |
path: .venv | |
key: ${{ runner.os }}-${{ hashFiles('requirements/requirements-tests.txt') }} | |
- run: just setup-tests | |
- run: just test |