Skip to content

Commit

Permalink
Merge pull request #17 from emdgroup/repo/actions_changes
Browse files Browse the repository at this point in the history
Actions Changes
  • Loading branch information
Scienfitz authored Dec 1, 2023
2 parents c6ee44e + 0696f77 commit 171824c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ name: Continuous Integration
on:
push:
branches: main
tags: '*'
pull_request:
branches: main
workflow_dispatch:
Expand All @@ -25,6 +24,7 @@ jobs:
name: "Changelog"
runs-on: ubuntu-latest
if: ${{ github.event_name == 'pull_request' }}
continue-on-error: true
steps:
- uses: actions/checkout@v3
- name: Assert Changelog Edit
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
tox -e lint-${{ matrix.py-version.tox }}
typecheck:
needs: [changelog, lint]
needs: [lint]
strategy:
matrix:
py-version: [ {semantic: '3.11', tox: 'py311'} ]
Expand All @@ -76,7 +76,7 @@ jobs:
tox -e mypy-${{ matrix.py-version.tox }}
audit:
needs: [changelog, lint]
needs: [lint]
strategy:
matrix:
py-version: [ {semantic: '3.11', tox: 'py311'} ]
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@ name: Documentation
on:
push:
branches: main
workflow_dispatch: # Allow manually triggering the workflow
workflow_dispatch:

concurrency:
group: >-
${{ github.workflow }}
group: ${{ github.workflow }}
cancel-in-progress: true

jobs:
Expand Down

0 comments on commit 171824c

Please sign in to comment.