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 7cda76c commit b53addaCopy full SHA for b53adda
.github/workflows/pr-validation.yml
@@ -37,7 +37,7 @@ jobs:
37
pip install -r requirements.txt
38
- name: Lint with flake8
39
run: |
40
- flake8 . --count --show-source --statistics
+ flake8 . --count --show-source --statistics --exit-zero
41
- name: Pytest unit tests
42
working-directory: tests/durabletask
43
.github/workflows/publish-dts-sdk.yml
@@ -2,14 +2,13 @@ name: Publish Durable Task Scheduler to PyPI
2
3
on:
4
push:
5
+ branches:
6
+ - "main"
7
tags:
- - 'azuremanaged-v*' # Only run for tags starting with "azuremanaged-v"
-
8
-on:
9
- push:
10
- branches: [ "main" ]
+ - "azuremanaged-v*" # Only run for tags starting with "azuremanaged-v"
11
pull_request:
12
13
14
jobs:
15
lint:
0 commit comments