Skip to content

bump py version to 3.9 in testing.yml #66

bump py version to 3.9 in testing.yml

bump py version to 3.9 in testing.yml #66

Workflow file for this run

name: Testing
on: [push, pull_request]
jobs:
build:
strategy:
max-parallel: 20
matrix:
os: [ubuntu-latest]
python-version: [3.9]
runs-on: ${{ matrix.os }}
env:
PMG_MAPI_KEY: ${{ secrets.PMG_MAPI_KEY }}
MPLBACKEND: "Agg"
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 dependencies
run: |
python -m pip install --upgrade pip
pip install -e '.[dev]'
- name: pytest
run: |
pytest --cov=pymatgen.analysis.diffusion --durations=30 pymatgen