Skip to content

Commit 9fda3d6

Browse files
authored
Create vendor.yml
1 parent b79b4c0 commit 9fda3d6

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/vendor.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Check Vendordep Versions
2+
3+
on:
4+
push:
5+
paths:
6+
- 'vendordeps/**'
7+
- 'build.gradle'
8+
- '.github/workflows/vendor.yml'
9+
pull_request:
10+
paths:
11+
- 'vendordeps/**'
12+
- 'build.gradle'
13+
14+
jobs:
15+
verify:
16+
runs-on: ubuntu-latest
17+
18+
steps:
19+
- name: Checkout Code
20+
uses: actions/checkout@v4
21+
22+
- name: Set up Python
23+
uses: actions/setup-python@v5
24+
with:
25+
python-version: '3.x'
26+
27+
- name: Run Vendordep Version Checker
28+
run: python scripts/vendor.py

0 commit comments

Comments
 (0)