Skip to content

Enhance slab tensile criterion logic and update tests #192

Enhance slab tensile criterion logic and update tests

Enhance slab tensile criterion logic and update tests #192

Workflow file for this run

name: Run unit tests 🤖
# Trigger conditions for the workflow
"on":
# Run unit tests on pull_request events
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
# Allow this workflow to be called by other workflows
workflow_call:
# Allow this workflow to be called manually (e.g. from the GitHub Actions UI)
workflow_dispatch:
jobs:
test:
name: Run unit tests 🤖
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up uv
uses: astral-sh/setup-uv@v7
with:
version: "latest"
- name: Install dependencies
run: uv sync
- name: Run tests
run: uv run python tests/run_tests.py