Skip to content

restart.create: Add averageZ parameter #497

restart.create: Add averageZ parameter

restart.create: Add averageZ parameter #497

Workflow file for this run

name: Test and lint
on:
# Run each time we push and pull requests
push:
pull_request:
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
python-version: ["3.11", "3.12", "3.13"]
os: [ubuntu-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
uv pip install .[tests]
- name: Test local run
run: |
uv run pytest -v
lint:
runs-on: ubuntu-latest
if: always()
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: "3.11"
- name: Run Ruff
run: uvx ruff check --output-format=github .