add page for media stuff #234
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
on: | |
- push | |
jobs: | |
pypi: | |
strategy: | |
matrix: | |
python-version: | |
- "3.10" | |
runs-on: ubuntu-latest | |
steps: | |
- name: fetch all history and tags | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: setup python | |
uses: actions/setup-python@v4 | |
with: | |
cache: pip | |
cache-dependency-path: pyproject.toml | |
python-version: "${{ matrix.python-version}}" | |
- name: upgrade dependencies | |
run: |- | |
python -m pip install --upgrade pip hatch | |
pip install -e.[test] | |
- name: test with pytest | |
run: | | |
hatch run test:run |