Dataops 467: Removed runfolder directory created in delivery_runfolders_for_project_workflow #50
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
name: Run Unit Tests | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: | | |
sudo apt install rsync -y | |
python -m pip install --upgrade pip | |
pip install wheel | |
pip install -r requirements/dev . | |
- name: Launch tests | |
run: | | |
python -m unittest discover -s ./tests -t . |