Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,11 @@ on: # yamllint disable-line rule:truthy
push:
branches: [develop, master]
pull_request:
# The branches below must be a subset of the branches above
branches: [develop]
branches: [develop, master]
paths:
- '**/*.py'
- '**/*.js'
- '**/*.ts'
schedule:
- cron: '0 14 * * 1'

Expand Down
13 changes: 3 additions & 10 deletions .github/workflows/test-brew.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,9 @@ name: brew

on: # yamllint disable-line rule:truthy
push:
paths:
- 'proxy/**'
- 'tests/**'
- 'examples/**'
- 'requirements*'
- 'setup.cfg'
- 'check.py'
- 'MANIFEST.in'
- '.github/workflows/test-brew.yml'
- 'helper/homebrew/**'
branches:
- master
- develop
pull_request:
paths:
- 'proxy/**'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-dashboard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name: dashboard

on: # yamllint disable-line rule:truthy
push:
paths:
- 'dashboard/**'
- '.github/workflows/test-dashboard.yml'
branches:
- master
- develop
pull_request:
paths:
- 'dashboard/**'
Expand Down
13 changes: 3 additions & 10 deletions .github/workflows/test-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,9 @@ name: docker

on: # yamllint disable-line rule:truthy
push:
paths:
- 'proxy/**'
- 'tests/**'
- 'examples/**'
- 'requirements*'
- 'setup.cfg'
- 'check.py'
- 'MANIFEST.in'
- '.github/workflows/test-docker.yml'
- 'Dockerfile'
branches:
- master
- develop
pull_request:
paths:
- 'proxy/**'
Expand Down
13 changes: 4 additions & 9 deletions .github/workflows/test-library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,9 @@ name: lib

on: # yamllint disable-line rule:truthy
push:
paths:
- 'proxy/**'
- 'tests/**'
- 'examples/**'
- 'requirements*'
- 'setup.cfg'
- 'check.py'
- 'MANIFEST.in'
- '.github/workflows/test-library.yml'
branches:
- master
- develop
pull_request:
paths:
- 'proxy/**'
Expand All @@ -22,6 +16,7 @@ on: # yamllint disable-line rule:truthy
- 'check.py'
- 'MANIFEST.in'
- '.github/workflows/test-library.yml'
- '.*'
workflow_dispatch:
inputs:
release-version:
Expand Down
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "modifications",
"editor.codeActionsOnSave": {
"source.fixAll": true
},
Expand Down