Skip to content

Commit d4a925c

Browse files
committed
add GHA workflow
1 parent ee98367 commit d4a925c

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: check intended for
2+
3+
concurrency:
4+
group: ${{ github.workflow }}-${{ github.ref }}
5+
cancel-in-progress: true
6+
7+
on: [push, pull_request]
8+
9+
jobs:
10+
cehck_intended_for:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout 🛎️
14+
uses: actions/checkout@v3
15+
- uses: actions/setup-python@v4
16+
with:
17+
python-version: "3.11"
18+
- name: Install dependencies 🔧
19+
run: |
20+
python -m pip install --upgrade pip
21+
python -m pip install -r tools/requirements.txt
22+
23+
- name: Run script 🚀
24+
run: python tools/check_intended_for.py

0 commit comments

Comments
 (0)