From dfc0b71cb5e32fd330a6f52686fc8445fa52dbee Mon Sep 17 00:00:00 2001 From: Jan Janssen Date: Wed, 17 Mar 2021 09:49:02 +0100 Subject: [PATCH] Create pypicheck.yml --- .github/workflows/pypicheck.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/pypicheck.yml diff --git a/.github/workflows/pypicheck.yml b/.github/workflows/pypicheck.yml new file mode 100644 index 0000000..f556ace --- /dev/null +++ b/.github/workflows/pypicheck.yml @@ -0,0 +1,30 @@ +name: Pip check + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ${{ matrix.operating-system }} + strategy: + matrix: + operating-system: [ubuntu-latest] + python-version: [3.9] + + steps: + - uses: actions/checkout@v2 + - uses: conda-incubator/setup-miniconda@v2 + with: + auto-update-conda: true + python-version: ${{ matrix.python-version }} + channel-priority: strict + environment-file: .ci_support/environment.yml + - name: Setup + shell: bash -l {0} + run: | + pip install --no-deps . + pip check