Provide additional functionality to deal with structures in py4vasp #56
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
name: test-core | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: ["3.8", "3.9", "3.10"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Set up poetry | |
run: | | |
python --version | |
python -m pip install --progress-bar=off --upgrade pip | |
pip install --progress-bar=off "poetry!=1.4.1" | |
- name: Install py4vasp-core | |
run: | | |
cp core/* . | |
poetry --version | |
poetry install | |
- name: Test with pytest | |
run: | | |
poetry run pytest --version | |
poetry run pytest |