Skip to content

Commit

Permalink
Update pythonapp.yml
Browse files Browse the repository at this point in the history
Adding on workflow_dispatch, hopefully enabling the possibility to run the workflow manually.
Moved up to from python 3.7 to 3.10
  • Loading branch information
AnEnglishmanInNorway authored Jul 10, 2024
1 parent 45699da commit 0c1479c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Python application

on: [push]
on: [push, workflow_dispatch]

jobs:
build:
Expand All @@ -9,10 +9,10 @@ jobs:

steps:
- uses: actions/checkout@v1
- name: Set up Python 3.7
- name: Set up Python 3.10
uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: 3.10
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 0c1479c

Please sign in to comment.