From d0407dd596d819425952d0c61f1df658133e4923 Mon Sep 17 00:00:00 2001 From: Jonathan Wren Date: Sat, 7 Nov 2020 15:43:06 -0800 Subject: [PATCH] clean up --- .github/workflows/testing.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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