-
-
Notifications
You must be signed in to change notification settings - Fork 60
34 lines (28 loc) · 796 Bytes
/
validate_feeds.yml
File metadata and controls
34 lines (28 loc) · 796 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
name: Validate Feeds
on:
workflow_run:
workflows: ["Run Feeds", "Run Selenium Feeds"]
types: [completed]
workflow_dispatch:
jobs:
validate:
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
ref: main
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Install uv
uses: astral-sh/setup-uv@v8.0.0
with:
enable-cache: true
- name: Install dependencies and validate all feeds
run: |
uv sync
uv run feed_generators/validate_feeds.py