From a208163563b649268e6f29e6607a03e942810419 Mon Sep 17 00:00:00 2001 From: Michael Tiemann <72577720+MichaelTiemannOSC@users.noreply.github.com> Date: Tue, 19 Sep 2023 06:22:03 -0400 Subject: [PATCH] Update ci.yml Use single quotes when testing the value of `uncertainties`. Signed-off-by: Michael Tiemann <72577720+MichaelTiemannOSC@users.noreply.github.com> --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 29f3040..572db6e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -63,7 +63,7 @@ jobs: run: pip install "${{matrix.pandas}}" - name: Install uncertainties - if: ${{ matrix.uncertainties != "no-thank-you" }} + if: ${{ matrix.uncertainties != 'no-thank-you' }} run: pip install "${{matrix.uncertainties}}" - name: Run Tests