From 7bf1ab844b8db028194b29d155dccd072748c2ba Mon Sep 17 00:00:00 2001 From: fmhoeger Date: Sat, 3 Feb 2024 20:36:38 -0600 Subject: [PATCH] Add cln-version 'master' and 'v23.11' to matrix --- .github/workflows/main.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8bcd884..b5fc31b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,7 +12,7 @@ on: jobs: build-and-test: - name: Test PY=${{ matrix.python-version }}, BCD=${{ matrix.bitcoind-version }}, EXP=${{ matrix.experimental }}, DEP=${{ matrix.deprecated }} + name: Test PY=${{ matrix.python-version }}, BCD=${{ matrix.bitcoind-version }}, CLN=${{ matrix.cln-version }}, EXP=${{ matrix.experimental }}, DEP=${{ matrix.deprecated }} runs-on: ubuntu-latest timeout-minutes: 60 strategy: @@ -20,18 +20,19 @@ jobs: matrix: python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] bitcoind-version: ["26.0"] + cln-version: ["master", "v23.11"] experimental: [1] deprecated: [0] steps: - uses: actions/checkout@v4 - - name: Checkout c-lightning@v23.11 + - name: Checkout c-lightning@${{ matrix.cln-version }} uses: actions/checkout@v4 with: repository: 'ElementsProject/lightning' path: 'lightning' - ref: 'v23.11' + ref: ${{ matrix.cln-version }} submodules: 'recursive' fetch-depth: 0 # Required for pyln versions to be recognized