Skip to content

v0.3.12 Release

v0.3.12 Release #32

Workflow file for this run

# This workflow will build and test the Rust code in this repository. There are
# separate workflows for testing the python portion of the code base.
#
# This file is *not* generated from automation and is manually maintained.
#
name: "[tower] Test python"
on:
pull_request:
push:
branches:
- '*'
tags-ignore:
- '**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ubuntu-latest

Check failure on line 26 in .github/workflows/test-python.yml

View workflow run for this annotation

GitHub Actions / [tower] Test python

Invalid workflow file

The workflow is not valid. .github/workflows/test-python.yml (Line: 26, Col: 13): Unexpected value 'ubuntu-latest'
steps:
- uses: actions/checkout@v4
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v6
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: ".python-version"
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Run tests
run: uv run pytest tests