Skip to content

Add pandas to dependency #2

Add pandas to dependency

Add pandas to dependency #2

Workflow file for this run

name: Tests
on:
push:
branches:
- '*'
jobs:
test:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install ase
python -m pip install spglib
python -m pip install pytest
- name: Run pytest
run: |
python -m pytest