Skip to content

pyproject.toml: Store project metadata in pyproject.toml #4

pyproject.toml: Store project metadata in pyproject.toml

pyproject.toml: Store project metadata in pyproject.toml #4

Workflow file for this run

name: workload-processor tests
# build the documentation whenever there are new commits on main
on:
push:
branches:
- main
# Alternative: only build for tags.
# tags:
# - '*'
# security: restrict permissions for CI jobs.
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'
- run: pip install .[all]
- run: pytest -v