-
Notifications
You must be signed in to change notification settings - Fork 1
35 lines (31 loc) · 808 Bytes
/
Copy pathsmoke.yml
File metadata and controls
35 lines (31 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Smoke Tests
on:
workflow_call:
inputs:
team-id:
description: "Linear team UUID for the smoke test"
required: false
type: string
secrets:
LINEAR_API_KEY:
required: true
workflow_dispatch:
inputs:
team-id:
description: "Linear team UUID for the smoke test (optional, auto-detected if omitted)"
required: false
type: string
jobs:
smoke:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Run smoke tests
env:
LINEAR_API_KEY: ${{ secrets.LINEAR_API_KEY }}
LINEAR_TEAM_ID: ${{ inputs.team-id }}
run: uv run python scripts/smoke_test.py