Skip to content

Curvilinear propagation #3

Curvilinear propagation

Curvilinear propagation #3

Workflow file for this run

name: Build and Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
pip install -U pip pytest
pip install -U .
- name: Run tests
run: pytest