Skip to content

dependabot: bump ctor from 0.4.0 to 0.4.1 #204

dependabot: bump ctor from 0.4.0 to 0.4.1

dependabot: bump ctor from 0.4.0 to 0.4.1 #204

Workflow file for this run

name: Run Tests
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
rust-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
run: rustup default nightly
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
python-build-and-help:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
python-version: ${{ matrix.python-version }}
- name: Set up Python ${{ matrix.python-version }}
run: |
uv sync
uv run pymermaider --help
all-python-builds-pass:
needs: python-build-and-help
runs-on: ubuntu-latest
steps:
- name: Echo success
run: echo "All builds passed"