Auto Reward is part of base chain and set by default #65
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unit Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
python-unit-test: | |
container: | |
image: python:3.8 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Run Tests | |
shell: bash | |
run: | | |
pip install -r requirements.txt | |
pip install pytest | |
python -m pytest tests/ |