Skip to content

Feat: Raio test cases still have to make json files (#41) #78

Feat: Raio test cases still have to make json files (#41)

Feat: Raio test cases still have to make json files (#41) #78

Workflow file for this run

name: Python CI
on:
push:
branches: [ "dev", "main" ]
pull_request:
branches: [ "dev", "main" ]
defaults:
run:
shell: bash
working-directory: py_src
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.9", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install pipenv
run: pip install pipenv
- name: Run tests
run: |
pipenv install --dev
pipenv run pytest