Paint the shed

Just to test if this works:

Co-authored-by: geofft <geofft@users.noreply.github.com>
This commit is contained in:
Hynek Schlawack 2022-08-18 10:36:49 +02:00
parent 49ec7317c8
commit 1ce864475d
No known key found for this signature in database
GPG Key ID: AE2536227F69F181
1 changed files with 6 additions and 6 deletions

View File

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