Skip to content

update badges again #11

update badges again

update badges again #11

Workflow file for this run

name: build
on:
push:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
PYTHON_VERSION: "3.11"
jobs:
run-tests:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install geomdl
run: pip install -e ".[vis,test]"
- name: Run tests
run: pytest