Skip to content

Bump pandas from 2.1.4 to 2.2.0 #30

Bump pandas from 2.1.4 to 2.2.0

Bump pandas from 2.1.4 to 2.2.0 #30

name: Testing
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
testing:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
chmod +x build-packmol.sh
mkdir -p ${HOME}/.local/bin
bash build-packmol.sh
export PATH=${HOME}/.local/bin:${PATH}
python -m pip install --upgrade pip
pip install pytest
pip install .
- name: Test with pytest
run: |
pytest --verbose