From e28bd4705d14c5e10ae91c4bac1c6008f85e2e43 Mon Sep 17 00:00:00 2001 From: Alyssa Travitz Date: Thu, 5 Dec 2024 09:43:47 -0800 Subject: [PATCH] include gufe main and latest in ci matrix --- .github/workflows/ci.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index fc039385d..9468c010b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -30,7 +30,7 @@ defaults: jobs: tests: runs-on: ${{ matrix.os }} - name: "💻-${{matrix.os }} 🐍-${{ matrix.python-version }} 🗃️${{ matrix.pydantic-version }} oechem: ${{ matrix.openeye }}" + name: "💻-${{matrix.os }} 🐍-${{ matrix.python-version }} 🗃️${{ matrix.pydantic-version }} oechem: ${{ matrix.openeye }} gufe: ${{matrix.gufe-version}}" strategy: fail-fast: false matrix: @@ -41,6 +41,7 @@ jobs: - "3.11" - "3.12" openeye: ["no"] + gufe-version: ['latest', 'main'] include: - os: "macos-latest" python-version: "3.12" @@ -96,8 +97,8 @@ jobs: micromamba install -c openeye openeye-toolkits python -c "import openeye; assert openeye.oechem.OEChemIsLicensed(), 'oechem license check failed!'" - - name: "Install GUFE from main@HEAD" - run: python -m pip install --no-deps git+https://github.com/OpenFreeEnergy/gufe@main + - name: "Install GUFE from ${matrix.gufe-version}" + run: python -m pip install --no-deps git+https://github.com/OpenFreeEnergy/gufe@${matrix.gufe-version} - name: "Install" run: python -m pip install --no-deps -e .