From 9b9b68f512edecf209d9af977d2080194ff55d88 Mon Sep 17 00:00:00 2001 From: "Val Neekman (AvidCoder)" Date: Wed, 16 Feb 2022 15:38:40 -0500 Subject: git actions --- .github/workflows/dev.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 175facb..91929f7 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -1,5 +1,7 @@ -name: (CI) +name: DEV +# Run on push only for dev/sandbox +# Otherwise it may trigger concurrently `push & pull_request` on PRs. on: push: branches: @@ -8,12 +10,10 @@ on: jobs: build: - name: Setup ${{ matrix.python }} ${{ matrix.os }} - runs-on: ${{ matrix.os }} + name: Python ${{ matrix.python-version }} + runs-on: ubuntu-latest strategy: - fail-fast: false matrix: - os: [macos-latest, windows-latest, ubuntu-latest] python: [3.6, 3.7, 3.8, 3.9, "3.10", pypy3] steps: -- cgit v1.2.1