Run test suite on GitHub Actions #15
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, pull_request] | |
jobs: | |
build-sdist: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- run: python -m venv .venv | |
- run: .venv/bin/pip install build | |
- run: .venv/bin/python -m build --sdist | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: sdist | |
path: dist/videojitter-*.tar.gz | |
if-no-files-found: error | |
build-wheel: | |
runs-on: ubuntu-latest | |
needs: build-sdist | |
steps: | |
- uses: actions/download-artifact@v3 | |
with: | |
name: sdist | |
- run: tar --gzip --extract --verbose --strip-components=1 --file videojitter-*.tar.gz | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- run: python -m venv .venv | |
- run: .venv/bin/pip install build | |
- run: .venv/bin/python -m build --wheel | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: wheel | |
path: dist/videojitter-*.whl | |
if-no-files-found: error | |
test: | |
# TODO: also test on Windows | |
runs-on: ubuntu-latest | |
needs: build-wheel | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v3 | |
with: | |
name: wheel | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- run: python -m venv .venv | |
- run: .venv/bin/pip install videojitter-*.whl | |
- run: PATH=".venv/bin:$PATH" .venv/bin/python -m videojitter_test | |
- run: git diff --exit-code | |
pylint: | |
runs-on: ubuntu-latest | |
needs: build-sdist | |
steps: | |
- uses: actions/download-artifact@v3 | |
with: | |
name: sdist | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- run: tar --gzip --extract --verbose --strip-components=1 --file videojitter-*.tar.gz | |
- run: python -m venv .venv | |
- run: .venv/bin/pip install --requirement pylint-requirements.txt --requirement requirements.txt | |
- run: .venv/bin/pylint --verbose src videojitter_test |