summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2021-12-28 18:30:31 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2021-12-28 18:30:31 +0000
commitec8301570add3f8582e96d7f9aaed87e14154cca (patch)
treed71bf3f64b9d2342e5b7513e1ac5781e323972f6 /.github
parentReleasing debian version 1.9.4-2. (diff)
downloadiredis-ec8301570add3f8582e96d7f9aaed87e14154cca.tar.xz
iredis-ec8301570add3f8582e96d7f9aaed87e14154cca.zip
Merging upstream version 1.10.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release.yaml8
-rw-r--r--.github/workflows/test-binary-build.yaml4
-rw-r--r--.github/workflows/test.yaml6
3 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml
index 27b05c7..b41b835 100644
--- a/.github/workflows/release.yaml
+++ b/.github/workflows/release.yaml
@@ -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
diff --git a/.github/workflows/test-binary-build.yaml b/.github/workflows/test-binary-build.yaml
index a71d576..8d0a5fe 100644
--- a/.github/workflows/test-binary-build.yaml
+++ b/.github/workflows/test-binary-build.yaml
@@ -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
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml
index ede6dd3..7c992c7 100644
--- a/.github/workflows/test.yaml
+++ b/.github/workflows/test.yaml
@@ -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