Skip to content

Upgrade REE with types, to_dict(), bug fixes, none returns if there is no type and more #34

Upgrade REE with types, to_dict(), bug fixes, none returns if there is no type and more

Upgrade REE with types, to_dict(), bug fixes, none returns if there is no type and more #34

Workflow file for this run

name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.10.0
- uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with unittest
run: python -m unittest discover -s tests -t tests