Skip to content

Bump version: 0.3.0 → 0.3.1 #50

Bump version: 0.3.0 → 0.3.1

Bump version: 0.3.0 → 0.3.1 #50

Workflow file for this run

# This workflow runs tests for fdtd package.
name: fdtd tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install test dependencies
run: |
python -m pip install -U pip
python -m pip install -e .[dev]
- name: Run pytest
run: |
pytest