Moving CI #1
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: build | |
# Controls when the action will run. | |
on: [push, pull_request] | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
strategy: | |
matrix: | |
python-version: ['3,7', '3.8', '3.9', '3.10', '3.11'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{matrix.python-version}} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{matrix.python-version}} | |
- name: Install Python dependencies | |
run: | | |
pip install --upgrade pip | |
pip install -r requirements.txt | |
pip install -U numpy | |
pip install mypy | |
pip install types-PyYAML | |
pip install pytest | |
pip install pytest-cov | |
pip install . | |
pip list | |
- name: Run tests | |
run: | | |
pytest --cov-config=.coveragerc --cov=vasppy --cov-report lcov | |
- name: Coveralls GitHub Action | |
uses: coverallsapp/[email protected] | |
with: | |
path-to-lcov: ./coverage.lcov | |
github-token: ${{ secrets.GITHUB_TOKEN }} |