Skip to content

Commit

Permalink
Update workflow to run on push to master
Browse files Browse the repository at this point in the history
  • Loading branch information
loglund committed Aug 22, 2023
1 parent 9347819 commit abe6a3c
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions .github/workflows/pip.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
name: Pip Install
'on':
workflow_dispatch:
inputs:
extra_resolve_options:
description: Extra Resolve Options
required: false
push:
branches:
- master
pull_request:
jobs:
pip:
container:
Expand All @@ -16,12 +27,3 @@ jobs:
uses: actions/checkout@v2
- name: Install package
run: pip install .
name: Pip Install
'on':
pull_request: null
push:
branches:
- master
schedule:
- cron: 0 1 * * *
workflow_dispatch: null

0 comments on commit abe6a3c

Please sign in to comment.