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