Skip to content

Add Fluidity cornerflow 2d example #608

Add Fluidity cornerflow 2d example

Add Fluidity cornerflow 2d example #608

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
install-linux:
name: (Linux) Install package and run tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install and test
run: |
sudo apt-get update
sudo apt-get install -y libglu1-mesa
sudo apt-get install -y python3-pip
python3 -m pip install --upgrade pip
python3 -m pip install "$PWD[test]"
python3 -m pytest -rN
install-macos:
name: (MacOS) Install package and run tests
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install and test
run: |
python3 -m pip install --upgrade pip
python3 -m pip install "$PWD[test]"
python3 -m pytest -rN
install-windows:
name: (Windows) Install package and run tests
runs-on: windows-2019
if: false
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install and test
run: |
python3 -m pip install --upgrade pip
python3 -m pip install "$PWD[test]"
python3 -m pytest -rN