Skip to content

Commit

Permalink
Addeda a testing workflow for github
Browse files Browse the repository at this point in the history
  • Loading branch information
mihaiboldeanu committed Sep 14, 2023
1 parent e74fb8a commit 23e19f0
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Python Test

on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
python-version: [3.9, 3.10, 3.11]

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Tests
run: |
pytest

0 comments on commit 23e19f0

Please sign in to comment.