Skip to content

Commit

Permalink
Add CI (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
QU35T-code authored Oct 28, 2024
1 parent 81d5508 commit f440572
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'

- name: Install dependencies from source
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Execute test command from source
run: |
python3 pyLAPS.py --help

0 comments on commit f440572

Please sign in to comment.