1
0
Fork 0

Adding upstream version 1.10.0.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-09 17:04:49 +01:00
parent c0bb48d3f7
commit e47dfcc74f
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
10 changed files with 134 additions and 44 deletions

View file

@ -8,7 +8,7 @@ on:
jobs:
release-pypi:
name: release-pypi
runs-on: ubuntu-16.04
runs-on: ubuntu-latest
# FIXME
# help test shouldn't depends on this to run
@ -30,7 +30,7 @@ jobs:
with:
path: venv
# Look to see if there is a cache hit for the corresponding requirements file
key: ubuntu-16.04-poetryenv-${{ hashFiles('poetry.lock') }}
key: ubuntu-latest-poetryenv-${{ hashFiles('poetry.lock') }}
- name: Install Dependencies
run: |
python3 -m venv venv
@ -62,7 +62,7 @@ jobs:
release-binary:
name: Release Executable Binary.
runs-on: ubuntu-16.04
runs-on: ubuntu-latest
# FIXME
# help test shouldn't depends on this to run
@ -84,7 +84,7 @@ jobs:
with:
path: venv
# Look to see if there is a cache hit for the corresponding requirements file
key: ubuntu-16.04-poetryenv-${{ hashFiles('poetry.lock') }}
key: ubuntu-latest-poetryenv-${{ hashFiles('poetry.lock') }}
- name: Install Dependencies
run: |
python3 -m venv venv

View file

@ -9,7 +9,7 @@ on:
jobs:
test-release-binary:
name: Test Build Executable Binary. You can download from Artifact after building.
runs-on: ubuntu-16.04
runs-on: ubuntu-latest
# FIXME
# help test shouldn't depends on this to run
@ -31,7 +31,7 @@ jobs:
with:
path: venv
# Look to see if there is a cache hit for the corresponding requirements file
key: ubuntu-16.04-poetryenv-${{ hashFiles('poetry.lock') }}
key: ubuntu-latest-poetryenv-${{ hashFiles('poetry.lock') }}
- name: Install Dependencies
run: |
python3 -m venv venv

View file

@ -11,8 +11,8 @@ jobs:
name: Pytest
strategy:
matrix:
os: [ubuntu-16.04]
python: ['3.6', '3.7', '3.8', '3.9']
os: [ubuntu-latest]
python: ['3.6', '3.7', '3.8', '3.9', '3.10']
redis: [5, 6]
runs-on: ${{ matrix.os }}
@ -52,7 +52,7 @@ jobs:
pytest || cat cli_test.log
lint:
name: flake8 & black
runs-on: ubuntu-16.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2