Skip to content

Bump the actions group across 1 directory with 3 updates #2

Bump the actions group across 1 directory with 3 updates

Bump the actions group across 1 directory with 3 updates #2

Workflow file for this run

name: Test Automator
on:
push:
branches: [ main ]
paths:
- 'automator/**'
- '.github/workflows/test-automator.yml'
pull_request:
branches: [ main ]
paths:
- 'automator/**'
- '.github/workflows/test-automator.yml'
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: automator
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
python-version: '3.12'
- name: Install dependencies
run: uv sync
- name: Run tests
run: uv run python -m unittest discover tests -v