ABF: improve support for ABFs with variable sweep lengths #46
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: CI | |
on: | |
workflow_dispatch: | |
push: | |
pull_request: | |
jobs: | |
test: | |
name: Test Python ${{ matrix.python-version }} on ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: ["3.8", "3.x"] # use the oldest supported version and the latest version | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: 🛒 Checkout | |
uses: actions/checkout@v3 | |
- name: 🐍 Get Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: 🚚 Get Dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r src/requirements.txt | |
- name: 🧪 Run Tests | |
run: pytest |