Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
bossOfCode authored Aug 15, 2024
2 parents 63f3ddb + 98a1f9f commit 461cc04
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/action.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
name: run main.py
name: run scratchattach script

on:
workflow_dispatch:
inputs:
script:
description: "Script to run"
required: true
type: string
default: "message_viewer.py"
schedule:
- cron: "*/360 * * * *"

jobs:
build:
Expand All @@ -23,4 +31,4 @@ jobs:
- name: execute py script # run message_viewer.py
run: |
python3 message_viewer.py
python3 ${{ inputs.script }}
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11.3", "3.12", "3.12.5"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down

0 comments on commit 461cc04

Please sign in to comment.