* 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
name: CI
+
on: [push, pull_request]
-env:
- CI: true
jobs:
test:
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