Skip to content

Commit

Permalink
Add python build and test action
Browse files Browse the repository at this point in the history
  • Loading branch information
damyan committed Jan 23, 2024
1 parent eb0d616 commit 8cad1d4
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/python-test-and-run.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: 'Python build and test'

on:
push:
branches:
- main
pull_request:
workflow_dispatch:

jobs:
test-and-run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install python
uses: actions/setup-python@v5
with:
python-version: 3.11

- name: Install python modules
run: pip install -r requirements.txt

- name: Run kicktipp
run: ./auto_submit_tips.py -h

0 comments on commit 8cad1d4

Please sign in to comment.