Skip to content

post processing done #84

post processing done

post processing done #84

Workflow file for this run

name: Run Project Pipeline
on:
pull_request:
branches:
- main
jobs:
linter:
name: PyLint check
runs-on: ubuntu-latest
steps:
- name: linter checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- run: pip install -r requirements.txt
- run: pylint ./**/*.py
testing:
name: UnitTest
runs-on: ubuntu-latest
steps:
- name: checkout and testing
uses: actions/checkout@v3
with:
fetch-depth: 0
- run: sudo apt-get update
- run: sudo apt-get install poppler-utils
- run: pip install -r requirements.txt
- run: "python3 -m unittest discover -s src -p 'test_*.py'"