Skip to content

Commit

Permalink
Enable github workflows for main branch
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaelhm committed Nov 7, 2023
1 parent d2360b5 commit f3a5865
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/python-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@ on:
pull_request:
branches:
- develop
- main
- "release/**"
push:
branches:
- develop
- main
- "release/**"

jobs:
Expand Down Expand Up @@ -40,9 +42,8 @@ jobs:
types-pyyaml==6.0.12.10
types-retry==0.9.9.4
- name: Run linters
uses: wearerequired/lint-action@v1
uses: wearerequired/lint-action@v2
with:
github_token: ${{ secrets.github_token }}
# Enable linters
black: true
flake8: true
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/spell-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ on: # rebuild any PRs and main branch changes
pull_request:
branches:
- develop
- main
push:
branches:
- develop
- main
jobs:
spellcheck: # run the action
runs-on: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ on:
pull_request:
branches:
- develop
- main
push:
branches:
- develop
- main

jobs:
backend-tests:
Expand Down

0 comments on commit f3a5865

Please sign in to comment.