Update GoogleNews package to 1.6.14 #44
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: Continuous Integration | |
on: [push, pull_request] | |
jobs: | |
web: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Requirements | |
run: pip install -r requirements.txt | |
- name: Run Linter on python code with flake8 | |
run: flake8 | |
- name: Use pytest to run unittests | |
run: pytest | |