Skip to content

Update how we lint + set a square figure size for animate example #8

Update how we lint + set a square figure size for animate example

Update how we lint + set a square figure size for animate example #8

Workflow file for this run

name: check
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check version
run: |
grep -oP '^version = "\K[0-9]+\.[0-9]+\.[0-9]+' pyproject.toml > version_pyproject.toml
grep -oP '^__version__ = "\K[0-9]+\.[0-9]+\.[0-9]+' daisypy/vis/__init__.py > version___init__.py
diff version_pyproject.toml version___init__.py -q
exit $?