Skip to content

Create trrrrrigerci.txt #5

Create trrrrrigerci.txt

Create trrrrrigerci.txt #5

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
- name: Build C extensions
run: |
bash PyOCN/c_src/build.sh
- name: Run tests
run: |
python -m unittest discover tests/ -v