From 734fa0a4e0d6aa7add23bc4b987b21a1bfa103fa Mon Sep 17 00:00:00 2001 From: Olivier Bilodeau Date: Tue, 5 Dec 2023 10:59:51 -0500 Subject: [PATCH] CI: Testing on two Ubuntu LTS --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cfa917c14..86f6a8007 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,13 +32,14 @@ jobs: run: docker run pyrdp pyrdp-mitm -h install-and-test-ubuntu: - runs-on: ubuntu-latest strategy: matrix: + os: [ubuntu-22.04, ubuntu-20.04] # Lets try to keep testing an LTS python and latest python python-version: ['3.7', '3.11'] - name: Install and test on Ubuntu with Python ${{ matrix.python-version }} + runs-on: ${{ matrix.os }} + name: Install and test on Ubuntu ${{ matrix.os }} with Python ${{ matrix.python-version }} steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v1