Skip to content

Commit

Permalink
Merge pull request #1287 from python-gitlab/chore/deduplicate-pr-jobs
Browse files Browse the repository at this point in the history
chore(ci): deduplicate PR jobs
  • Loading branch information
max-wittig committed Feb 6, 2021
2 parents e6c20f1 + 63918c3 commit 9fe506f
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/docs.yml
@@ -1,6 +1,12 @@
name: Docs

on: [push, pull_request]
on:
push:
branches:
- master
pull_request:
branches:
- master

env:
PY_COLORS: 1
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/lint.yml
@@ -1,6 +1,12 @@
name: Lint

on: [push, pull_request]
on:
push:
branches:
- master
pull_request:
branches:
- master

env:
PY_COLORS: 1
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/test.yml
@@ -1,6 +1,12 @@
name: Test

on: [push, pull_request]
on:
push:
branches:
- master
pull_request:
branches:
- master

env:
PY_COLORS: 1
Expand Down

0 comments on commit 9fe506f

Please sign in to comment.