diff options
author | Steve Dower <steve.dower@python.org> | 2019-12-16 19:15:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-16 19:15:08 (GMT) |
commit | 6a263cf1adfc18cdba65c788dd76d35997a89acf (patch) | |
tree | 92bb3e8af0d4f78faec8962d5dc4abc682b29da8 /.github | |
parent | a76ba362c4d86adf5e7f8254398135d12d7afd25 (diff) | |
download | cpython-6a263cf1adfc18cdba65c788dd76d35997a89acf.zip cpython-6a263cf1adfc18cdba65c788dd76d35997a89acf.tar.gz cpython-6a263cf1adfc18cdba65c788dd76d35997a89acf.tar.bz2 |
bpo-39041: Add GitHub Actions badge to README.rst (GH-17628)
Also skip build for doc-only changes and enable on push
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 16d6f0d..7f13cfb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,14 +1,16 @@ name: Tests on: - #push: - # branches: - # - master - # - 3.8 - # - 3.7 - # paths-ignore: - # - 'Doc/**' - # - 'Misc/**' + push: + branches: + - master + - 3.8 + - 3.7 + paths-ignore: + - 'Doc/**' + - 'Misc/**' + - '**/*.md' + - '**/*.rst' pull_request: branches: - master @@ -17,6 +19,8 @@ on: paths-ignore: - 'Doc/**' - 'Misc/**' + - '**/*.md' + - '**/*.rst' jobs: build_win32: |