From 32c9d5fa70401dcc1dccfcaf60eb6b27fb771622 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Mon, 26 Oct 2020 15:41:46 +0100 Subject: [PATCH] GitHub Actions upgrade to actions/checkout@v2 (#2650) * GitHub Actions upgrade to actions/checkout@v2 * Update tests.yml --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6f2a748e..fc994db0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,6 +1,6 @@ name: tests -on: [push] +on: [push, pull_request] jobs: test: @@ -12,7 +12,7 @@ jobs: python-version: [3.5, 3.6, 3.7, 3.8] steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v1