From 97348412aaf717864a98af4b02bcd769b951bc14 Mon Sep 17 00:00:00 2001 From: zmumi Date: Fri, 3 May 2024 20:04:04 +0200 Subject: [PATCH] adding test runs on PR --- .github/workflows/non-test-tox.yml | 6 +++++- .github/workflows/tox-tests.yml | 9 +++++++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/workflows/non-test-tox.yml b/.github/workflows/non-test-tox.yml index 7393b99..5a1bd9e 100644 --- a/.github/workflows/non-test-tox.yml +++ b/.github/workflows/non-test-tox.yml @@ -1,6 +1,10 @@ name: Coverage, mypi -on: [push] +on: + push: + workflow_dispatch: + pull_request: + types: [ opened, synchronize, reopened ] jobs: build: diff --git a/.github/workflows/tox-tests.yml b/.github/workflows/tox-tests.yml index 1888247..5318d95 100644 --- a/.github/workflows/tox-tests.yml +++ b/.github/workflows/tox-tests.yml @@ -1,6 +1,11 @@ name: Tox Tests -on: [push] +on: + push: + workflow_dispatch: + pull_request: + types: [ opened, synchronize, reopened ] + jobs: build: @@ -8,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python: ['3.7', '3.8', '3.9', '3.10', '3.11'] + python: [ '3.7', '3.8', '3.9', '3.10', '3.11' ] steps: - uses: actions/checkout@v2