Update v1.1.6 #37
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: CI | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Development Environment | |
env: | |
TERM: xterm-256color | |
run: | | |
pwd | |
export TERM=xterm-256color | |
python3 -m venv venv && \ | |
source venv/bin/activate && \ | |
pip install -e ".[dev]" | |
- name: Run Unit Tests | |
run: | | |
source venv/bin/activate | |
pytest |