GitHub Actions upgrade to actions/checkout@v2 (#2650)

* GitHub Actions upgrade to actions/checkout@v2

* Update tests.yml
This commit is contained in:
Christian Clauss 2020-10-26 15:41:46 +01:00 committed by GitHub
parent 29dac8a188
commit 32c9d5fa70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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