From 1ce864475d5408268944edf0520af97e5e743a60 Mon Sep 17 00:00:00 2001 From: Hynek Schlawack Date: Thu, 18 Aug 2022 10:36:49 +0200 Subject: [PATCH] Paint the shed Just to test if this works: Co-authored-by: geofft --- .github/workflows/main.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0ee45670..01add385 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -3,10 +3,10 @@ name: CI on: push: - branches: ["main"] + branches: [main] tags: ["*"] pull_request: - branches: ["main"] + branches: [main] workflow_dispatch: env: @@ -31,20 +31,20 @@ jobs: with: python-version: ${{ matrix.python-version }} - - name: "Install dependencies" + - name: Install dependencies run: | python -VV python -m site python -m pip install --upgrade pip setuptools wheel python -m pip install --upgrade virtualenv tox tox-gh-actions - - run: "python -m tox" + - run: python -m tox - name: Upload coverage data uses: actions/upload-artifact@v3 with: name: coverage-data - path: ".coverage.*" + path: .coverage.* if-no-files-found: ignore @@ -103,7 +103,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: ["ubuntu-latest", "windows-latest"] + os: [ubuntu-latest, windows-latest] steps: - uses: actions/checkout@v3