Skip to content

Update project & fix cookies extraction #1

Update project & fix cookies extraction

Update project & fix cookies extraction #1

Workflow file for this run

name: Run code style check
on:
pull_request:
branches:
- master
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup python environment
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install requirements
run: pip install -r requirements-ci.txt
- name: Style checking
run: make style
- name: Types checking
run: make types