Skip to content

6.8 refactoring - add get_page() in app.py #58

6.8 refactoring - add get_page() in app.py

6.8 refactoring - add get_page() in app.py #58

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: install dependencies
run: |
pip install poetry
poetry install
- name: run linter
run: make lint