Skip to content

add newsnow provider #244

add newsnow provider

add newsnow provider #244

Workflow file for this run

name: Pylint Scan
on:
pull_request:
paths:
- 'src/**/*.py'
- 'tests/**/*.py'
- 'apps/**/*.py'
push:
branches:
- main
paths:
- 'src/**/*.py'
- 'tests/**/*.py'
- 'apps/**/*.py'
workflow_dispatch:
jobs:
codescan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential
pip3 install --upgrade pip
for f in $(find -type f -name "requirements.txt"); do
pip3 install -r $f
done
- name: Analyzing the python code
run: |
set -ex
export PYTHONPATH=$PWD/src/gentrade/
make lint