Add certbot-related targets to Makefile #23
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: Unit tests | |
on: | |
push: | |
branches: master | |
pull_request: | |
branches: master | |
jobs: | |
unit-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository content | |
uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.x" | |
- name: Install requirements and run unit tests | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements_dev.txt | |
python3 -m pytest tests --verbose | |
- name: Time reporter | |
uses: DeviesDevelopment/workflow-timer@v0.0.2 | |