Skip to content

WIP: Support for 3D structure functions #92

WIP: Support for 3D structure functions

WIP: Support for 3D structure functions #92

Workflow file for this run

name: CI
on:
push:
branches:
- main
tags:
- "v*"
pull_request:
branches:
- main
schedule:
# At 17:31 every Tuesday (UTC)
# At 9:31 every Tuesday (PST)
- cron: "31 17 * * 2"
workflow_dispatch:
jobs:
# Run tests
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
pip install .[test]
pip install pytest
- name: Test
run: |
pytest tests/
# Check linting, formating, types, etc.
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install Dependencies
run: |
pip install pre-commit
- name: Lint
run: |
pre-commit run --all-files