Skip to content

Commit

Permalink
Adds test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Wolfgang Koebele committed Feb 28, 2024
1 parent 16cd4c1 commit 753c9dc
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Python package

on:
push:
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Run Tests
run: python tests.py

0 comments on commit 753c9dc

Please sign in to comment.