Merge pull request #67 from brandonmoss-99/dependabot/pip/gallery-dl-… #111
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 tests | |
on: push | |
jobs: | |
UnitTest: | |
name: Run unit tests | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
cache: 'pip' # cache pip dependencies | |
- name: Install required dependencies | |
run: pip install -r requirements.txt | |
- name: Run unit tests | |
run: python -m unittest discover -s ./src |