make file_postprocessing not need diff files if SAVE_DIFF_RED_AVG=False #431
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: Run Tests | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.9, "3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install geos | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libgeos-dev | |
- name: Install | |
run: | | |
pip install --upgrade pip | |
pip install pytest | |
pip install . | |
- name: Test with pytest | |
run: pytest |