Skip to content

Updated README

Updated README #44

name: Continous integration
on: [push]
jobs:
Run-tests:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: '3.9'
env:
AGENT_TOOLSDIRECTORY: /opt/hostedtoolcache
- name: Install
run: |
pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: |
nose2 tests