Update CI config

* remove unneeded `CI: true` env var since it's already set by the runner
* update to `actions/setup-python@v2`
* remove `x64` architecture since it's the default
This commit is contained in:
XhmikosR 2021-02-06 17:06:48 +02:00 committed by GitHub
parent cba09a9cbf
commit cbeadb1e2b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,6 @@
name: CI
on: [push, pull_request]
env:
CI: true
jobs:
test:
@ -26,10 +25,9 @@ jobs:
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
architecture: "x64"
- run: python --version
- run: pip --version