diff --git a/.github/workflows/testing.yaml b/.github/workflows/testing.yaml index af83d192..1b3df096 100644 --- a/.github/workflows/testing.yaml +++ b/.github/workflows/testing.yaml @@ -2,17 +2,17 @@ name: Testing on: push: - branches: [ develop ] - pull_request: branches: [ develop, release ] + pull_request: + branches: [ develop ] jobs: test: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: [3.7, 3.8, 3.9] - os: [ubuntu-latest, macos-latest, windows-latest] + python-version: [ 3.7, 3.8, 3.9 ] + os: [ ubuntu-latest, macos-latest, windows-latest ] steps: - uses: actions/checkout@v2