Bump version #29
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
# HyperPyYAML unit tests to ease continuous integration | |
name: HyperPyYAML toolkit CI | |
# Runs on pushes to master and all pull requests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
jobs: | |
tests: | |
name: Tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.9] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Display Python version | |
run: python -c "import sys; print(sys.version)" | |
- name: Full dependencies | |
run: | | |
pip install --editable . | |
pip install pytest | |
- name: Run tests with pytest | |
run: | | |
pytest tests | |
- name: Doctests with pytest | |
run: | | |
pytest --doctest-modules hyperpyyaml |