Adding more CI/CD tests and also fixing issue #1 #6
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: pytest | |
on: | |
pull_request: | |
branches: | |
- master | |
- dev | |
workflow_dispatch: | |
jobs: | |
pytests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
env: | |
PYTHONPATH: ${{ github.workspace }} | |
steps: | |
- name: Check out pipeline code | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
# Install proj-bin only on Ubuntu | |
if [ "${{ matrix.os }}" = "ubuntu-latest" ]; then | |
sudo apt-get install proj-bin | |
fi | |
- name: run the tests | |
run: pytest tests/ | |