Skip to content

ci: update tests actions #48

ci: update tests actions

ci: update tests actions #48

Workflow file for this run

name: CI
on:
pull_request:
branches:
- "main"
- "dev"
jobs:
tests:
name: python
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Install the project
run: uv sync --all-extras --dev
- name: Run tests
run: uv run pytest testsname: CI

Check failure on line 27 in .github/workflows/run_tests.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/run_tests.yaml

Invalid workflow file

You have an error in your yaml syntax on line 27
on:
pull_request:
branches:
- "main"
- "dev"
jobs:
tests:
name: python
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Install the project
run: uv sync --all-extras --dev
- name: Run tests
run: uv run pytest tests