Skip to content

Commit 3a79647

Browse files
anton-bAnton Benkevich
andauthored
Fix patternt (#439)
Co-authored-by: Anton Benkevich <[email protected]>
1 parent 9a0c13a commit 3a79647

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/stage4_release_pypi.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name: Test and release
66
on:
77
push:
88
tags:
9-
- 'v[1-0]+.[1-0]+.[1-0]+'
9+
- 'v[0-9]+.[0-9]+.[0-9]+'
1010

1111
jobs:
1212
test:
@@ -23,10 +23,12 @@ jobs:
2323
- name: Install dependencies
2424
run: |
2525
python -m pip install --upgrade pip
26+
python -m pip install ./
2627
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
2728
- name: Test
2829
run: |
2930
python3 -m unittest
31+
python3 scripts/validate_my_definition.py -d alsdkdefs/apis/assets_query/
3032
deploy:
3133
needs: test
3234
runs-on: ubuntu-latest

.github/workflows/test_all.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
push:
88
tags-ignore:
99
- 'v[0-9]+.[0-9]+.[0-9]+'
10+
pull_request:
1011

1112
jobs:
1213
test:
@@ -23,7 +24,9 @@ jobs:
2324
- name: Install dependencies
2425
run: |
2526
python -m pip install --upgrade pip
27+
python -m pip install ./
2628
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
2729
- name: Test
2830
run: |
29-
python3 -m unittest
31+
python3 -m unittest
32+
python3 scripts/validate_my_definition.py -d alsdkdefs/apis/assets_query/

0 commit comments

Comments
 (0)