Bump idna from 3.3 to 3.7 in /example in the pip group across 1 directory #35
Workflow file for this run
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
# This is the work flow to generate preview links for Pull Requests | |
name: Test adaptive_learning_manager | |
on: | |
pull_request: | |
push: | |
branches: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: adaptive_learning_manager | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.8' | |
- name: Installing dependencies | |
run: pip install -r requirements.txt | |
- name: Run tests | |
run: | | |
python -m unittest tests/AdaptationManagerTest.py | |
python -m unittest tests/PredictionServiceTest.py | |