Skip to content

modified utils.format_string() to add fortrantype for D #116

modified utils.format_string() to add fortrantype for D

modified utils.format_string() to add fortrantype for D #116

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
ci:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
os: [ubuntu-latest, macos-latest, windows-latest]
defaults:
run:
shell: bash
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- name: Basic python setup
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: poetry install -E pandas
- name: Check formatting
run: poetry run black --check .
- name: Test
run: poetry run pytest -m "not optional" tests