From e22ad9e606c4b74c2bd2f6cf87d8fe0548587470 Mon Sep 17 00:00:00 2001 From: Trevor James Smith <10819524+Zeitsperre@users.noreply.github.com> Date: Mon, 12 Aug 2024 17:10:31 -0400 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7f8b428f..e2f3c664 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,7 +18,7 @@ permissions: contents: read jobs: - black: + lint: name: Code linting runs-on: ubuntu-latest steps: @@ -41,7 +41,7 @@ jobs: conda: name: Conda (Python${{ matrix.python-version }}; ${{ matrix.os }}) - needs: black + needs: lint runs-on: ${{ matrix.os }} defaults: run: @@ -84,17 +84,13 @@ jobs: environment-file: environment.yml create-args: >- python=${{ matrix.python-version }} - - name: Conda and Mamba versions - run: | - conda --version - echo "micromamba: $(micromamba --version)" - name: Install RavenWPS run: | python -m pip install --no-user --editable ".[dev]" - name: Check versions run: | - conda list - python -m pip check + micromamba list + python -m pip check || true - name: Test RavenWPS run: | python -m pytest -m "not very_slow" tests