This repository has been archived by the owner on Mar 28, 2024. It is now read-only.
Merge pull request #74 from Call-for-Code/dependabot/pip/urllib3-1.26.18 #133
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: Python application | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install --upgrade pipenv | |
pipenv install --system | |
- name: Run tests | |
run: | | |
python -m unittest discover -s tests -p "*.py" |