Skip to content

Commit

Permalink
Add GitHub Python workflow tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jbcoe committed Mar 31, 2024
1 parent 375d7b9 commit c8ba2fc
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Python test
on:
schedule:
- cron: "0 1 * * *"
push:
branches: [main]
pull_request:
branches: [main]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt

0 comments on commit c8ba2fc

Please sign in to comment.