Repository containing reusable workflows for the QuTech organisation.
The reusable workflows from this repository can be referenced by "using" them in your GitHub actions workflow. No need to install any packages for this.
Note that these are not completely generic actions, and will only be of use when a GitHub repository conforms to the standards for QI projects on GitHub, which is to say, it uses the following tools:
- Tox for running dev tools with the following environments:
lintfor running linters and formatterstypefor running type checkersdocsfor building documentationtestfor running unt tests
- Poetry for project/package management
An example of such a set-up can be found in Qiskit-QI.
Using a workflow:
jobs:
run-poetry-tests:
uses: qutech-delft/github-actions/.github/workflows/poetry_tests.yaml
with:
python-version: "3.11"
secrets:
github_token: ${{ secrets.GITHUB_TOKEN }}Using an action:
jobs:
deploy-preview:
runs-on: "ubuntu-latest"
steps:
- uses: QuTech-Delft/GitHub-Actions/actions/docs/sphinx-docs-preview@masterAdditional information can be found: https://docs.github.com/en/actions/sharing-automations/reusing-workflows
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.