Skip to content

chore: bump actions/create-github-app-token from 1.12.0 to 2.1.1 #404

chore: bump actions/create-github-app-token from 1.12.0 to 2.1.1

chore: bump actions/create-github-app-token from 1.12.0 to 2.1.1 #404

Workflow file for this run

# This workflow will install Python dependencies, and run the tests for our project
name: Test
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
runs-on: ubuntu-latest
if: "!startsWith(github.event.head_commit.message, 'bump:')"
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Install uv
uses: astral-sh/setup-uv@4959332f0f014c5280e7eac8b70c90cb574c9f9b # v6.6.0
- name: Install the project
run: uv sync --locked --group test --all-extras
- name: Run tests
run: uv run pytest tests