We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee98367 commit d4a925cCopy full SHA for d4a925c
.github/workflows/check_intended_for.yml
@@ -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