From cbeadb1e2b0061fe4bc99616133dd19dc2f779c3 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Sat, 6 Feb 2021 17:06:48 +0200 Subject: [PATCH] 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 --- .github/workflows/ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4f8f41ca4..5701eea12 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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