Update jid_vac_alignn.py #644
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: Rebuild | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools | |
pip install pytest coverage==6.5.0 flake8 pymatgen | |
#pip install codecov | |
python setup.py develop | |
#python -m pip install -r requirements.txt | |
- name: Build site | |
run: | | |
# flake8 --ignore E203,W503 --exclude=tests --statistics --count --exit-zero jarvis_leaderboard | |
coverage run -m pytest | |
coverage report -m -i | |
#codecov | |
#codecov --token="eba3e27a-b0c9-421a-a7f6-4ff5111fc4f0" |