Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/read raw files #31

Merged
merged 14 commits into from
Sep 14, 2023
Prev Previous commit
Next Next commit
Addeda a testing workflow for github
  • Loading branch information
mihaiboldeanu committed Sep 14, 2023
commit 23e19f0d49f0c9a64b72edaa2d937e1487cfe830
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