diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9f099fc9..e20e0bfa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.10", "3.11"] + python-version: ['3.10', '3.11'] steps: - uses: actions/checkout@v3 @@ -34,4 +34,5 @@ jobs: - name: Test with pytest run: | + conda install wandb pytest diff --git a/.github/workflows/python-package-conda.yml b/.github/workflows/python-package-conda.yml index 57940bdb..cb7eeb50 100644 --- a/.github/workflows/python-package-conda.yml +++ b/.github/workflows/python-package-conda.yml @@ -13,7 +13,7 @@ jobs: - name: Set up Python 3.10 uses: actions/setup-python@v3 with: - python-version: 3.10 + python-version: '3.10' - name: Add conda to system path run: | # $CONDA is an environment variable pointing to the root of the miniconda directory @@ -31,4 +31,5 @@ jobs: - name: Test with pytest run: | conda install pytest + conda install wandb pytest