summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVal Neekman (AvidCoder) <un33kvu@gmail.com>2022-02-16 15:38:40 -0500
committerVal Neekman (AvidCoder) <un33kvu@gmail.com>2022-02-16 15:38:40 -0500
commit9b9b68f512edecf209d9af977d2080194ff55d88 (patch)
treea80fab568f7ea6fa45103e8d76f1ed1950cc4986
parent6404c1d5c66ac436ccc613eec338d4f548c00457 (diff)
downloadpython-slugify-9b9b68f512edecf209d9af977d2080194ff55d88.tar.gz
git actions
-rw-r--r--.github/workflows/dev.yml10
1 files 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: