Skip to content

Commit

Permalink
gha: trigger ci-tests-pypi on pull_request (#1162)
Browse files Browse the repository at this point in the history
* gha: trigger ci-tests-pypi on pull_request

* add changelog news fragments

* disable the pip cache
  • Loading branch information
bjlittle authored Oct 18, 2024
1 parent 4252a15 commit 30b9257
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci-tests-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,15 @@
name: ci-tests-pypi

on:
workflow_dispatch:
pull_request:

schedule:
# every day @ 00h03
- cron: "3 0 * * *"

workflow_dispatch:


concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
Expand Down Expand Up @@ -52,7 +56,7 @@ jobs:

- name: "pip install"
run: |
pip install -e .[test,exam,cmap]
pip install --no-cache-dir -e .[test,exam,cmap]
- name: "pip freeze"
run: |
Expand Down
2 changes: 2 additions & 0 deletions changelog/1160.contributor.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Updated ``dependabot`` to orchestrate updates for the ``pip``
package-ecosystem. (:user:`bjlittle`)
3 changes: 3 additions & 0 deletions changelog/1162.contributor.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Triggered the ``ci-tests-pypi`` :fab:`github` Action on a ``pull_request``
event in order to provide test coverage of ``dependabot`` package updates.
(:user:`bjlittle`)

0 comments on commit 30b9257

Please sign in to comment.