run all tests only on PR
Some checks failed
check code / scan-code-py311 (push) Blocked by required conditions
check code / check-code-py39 (push) Blocked by required conditions
check code / check-code-py310 (push) Blocked by required conditions
check code / check-code-py311 (push) Blocked by required conditions
check code / check-docs (push) Successful in 7s
check code / check-code-py38 (push) Has been cancelled

This commit is contained in:
Ivan Schaller 2024-02-01 20:42:32 +01:00
parent 01a56734f2
commit 0d0e45f800
Signed by: olofvndrhr
GPG key ID: 2A6BE07D99C8C205
2 changed files with 5 additions and 1 deletions

View file

@ -90,6 +90,7 @@ jobs:
- name: update dockerhub repo description
uses: peter-evans/dockerhub-description@v3
if: gitea.event_name != 'pull_request'
with:
repository: ${{ env.AUTHOR }}/${{ env.IMAGE }}
short-description: ${{ github.event.repository.description }}

View file

@ -23,7 +23,7 @@ jobs:
scan-code-py311:
runs-on: python311
if: gitea.event_name != 'pull_request'
needs: [check-code-py311]
needs: [check-code-py38]
steps:
- name: checkout code
uses: actions/checkout@v3
@ -63,6 +63,7 @@ jobs:
check-code-py39:
runs-on: python39
needs: [check-code-py38]
if: gitea.event_name == 'pull_request'
steps:
- name: checkout code
uses: actions/checkout@v3
@ -82,6 +83,7 @@ jobs:
check-code-py310:
runs-on: python310
needs: [check-code-py39]
if: gitea.event_name == 'pull_request'
steps:
- name: checkout code
uses: actions/checkout@v3
@ -101,6 +103,7 @@ jobs:
check-code-py311:
runs-on: python311
needs: [check-code-py310]
if: gitea.event_name == 'pull_request'
steps:
- name: checkout code
uses: actions/checkout@v3