update readme #54
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
# .github/workflows/ci-cd.yml | |
--- | |
on: | |
- push | |
env: | |
PYTHONUNBUFFERED: 1 | |
jobs: | |
test: | |
strategy: | |
matrix: | |
version: | |
- 3.7 | |
- 3.11 | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: setup python ${{ matrix.version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.version }} | |
- name: upgrade pip | |
run: pip install --upgrade pip | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: install editable package | |
run: pip install -e '.[test]' | |
- name: run pyright | |
uses: jakebailey/pyright-action@v1 | |
- name: run unit tests | |
run: pytest -sxv tests/unit | |
- name: install nomad server | |
run: bash ./tests/provision.sh nomad_install | |
- name: run nomad server | |
run: bash ./tests/provision.sh nomad_start | |
- name: run integration tests | |
run: pytest -sxv tests/integration | |
pypi-publish: | |
name: Upload release to PyPI | |
needs: | |
- test | |
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') | |
#if: github.ref == 'refs/heads/main' | |
runs-on: ubuntu-latest | |
environment: | |
name: pypi | |
url: https://pypi.org/p/nomad-tools | |
permissions: | |
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: install build python package | |
run: pip install --upgrade build | |
- name: build the package | |
run: python -m build | |
- name: Publish package distributions to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 |