From c9a05509f9f13c3720735674a0d053532c44bc90 Mon Sep 17 00:00:00 2001 From: Thomas Holder Date: Sun, 21 Jan 2024 10:48:47 +0100 Subject: [PATCH 1/2] CI: Update "uses" versions --- .github/workflows/python-package.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 571cd14..fce5ae1 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -21,9 +21,9 @@ jobs: python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -47,12 +47,12 @@ jobs: - name: Upload coverage to https://codecov.io/gh/jensengroup/propka run: bash <(curl -s https://codecov.io/bash) - name: Store coverage text results - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: coverage-text path: coverage.txt - name: Store coverage HTML results - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: coverage-html path: htmlcov/* @@ -60,8 +60,8 @@ jobs: static_type_check: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 with: python-version: "3.12" - run: python -m pip install mypy types-setuptools From 725c4186b53f3a384fa686a76e2bf47146ce33bc Mon Sep 17 00:00:00 2001 From: Thomas Holder Date: Sun, 21 Jan 2024 09:38:29 +0100 Subject: [PATCH 2/2] CI: Add Windows --- .github/workflows/python-package.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index fce5ae1..c408069 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -15,9 +15,10 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} strategy: matrix: + os: ["ubuntu-latest", "windows-latest"] python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: @@ -31,7 +32,7 @@ jobs: python -m pip install --upgrade pip setuptools wheel python -m pip install flake8 pytest python -m pip install coverage - if [ -f requirements.txt ]; then python -m pip install -r requirements.txt; fi + python -m pip install -r requirements.txt - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names @@ -46,6 +47,7 @@ jobs: coverage html - name: Upload coverage to https://codecov.io/gh/jensengroup/propka run: bash <(curl -s https://codecov.io/bash) + if: ${{ ! startsWith(matrix.os, 'windows') }} - name: Store coverage text results uses: actions/upload-artifact@v3 with: