From afc6ce5ea94cea37fc061541379f058cab4ad962 Mon Sep 17 00:00:00 2001 From: Luke Van Seters Date: Fri, 23 Jul 2021 15:56:30 -0400 Subject: [PATCH 1/2] Add PR as a trigger for python workflows --- .github/workflows/github-actions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index 6f18025..3203fac 100644 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -1,6 +1,6 @@ name: Python package -on: [push] +on: [push, pull_request] jobs: build: From 54cf9ad3ff81cda9d427bd9034f6a4fa2c41784a Mon Sep 17 00:00:00 2001 From: Luke Van Seters Date: Fri, 23 Jul 2021 15:59:38 -0400 Subject: [PATCH 2/2] Update README to trigger PR checks again --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3e9523f..b48e10a 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ pip install -r requirements_dev.txt pre-commit install ``` -6. Install pre-commit's dependencies and ensure it's working +6. Install pre-commit's dependencies and ensure that it's working ``` pre-commit run --all-files ```