Skip to content

Merge pull request #26 from Rot127/small-fixes #20

Merge pull request #26 from Rot127/small-fixes

Merge pull request #26 from Rot127/small-fixes #20

Workflow file for this run

name: Unit Tests
on: [push]
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: '3.11'
- name: Install
run: |
python3 -m pip install --upgrade pip
pip3 install -r requirements.txt
pip3 install .
- name: Run unit tests
run: python -m unittest rzilcompiler/Tests/test_all.py