Skip to content

fix: add exception for techcrunch blog parsing #42

fix: add exception for techcrunch blog parsing

fix: add exception for techcrunch blog parsing #42

Workflow file for this run

name: unit-tests
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ "3.10", "3.11" ]
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install dependencies
run: |
sudo apt update -y
sudo apt upgrade -y
make install-dev
- name: Tests with pytest
run: |
make reports
- name: Quality check
run: |
make linter
- name: Find Dead code
run: |
make find-dead-code