From 60ee4d5ab795e7a237b0d4d49c5d18a87f639f6b Mon Sep 17 00:00:00 2001 From: "Daniel G. A. Smith" Date: Sun, 1 Dec 2019 12:54:43 -0500 Subject: [PATCH] CI: Adds a conda list step --- .github/workflows/CI.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 596375c2..922f71b7 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -1,6 +1,6 @@ name: CI -on: [push] +on: [push, pull_request] jobs: build: @@ -37,6 +37,12 @@ jobs: eval "$(conda shell.bash hook)" && conda activate test python -m pip install . --no-deps + - name: Environment Information + shell: bash + run: | + eval "$(conda shell.bash hook)" && conda activate test + conda list --show-channel-urls + - name: PyTest shell: bash run: |