Skip to content

Bump types-beautifulsoup4 from 4.12.0.20240106 to 4.12.0.20240229 (#125) #177

Bump types-beautifulsoup4 from 4.12.0.20240106 to 4.12.0.20240229 (#125)

Bump types-beautifulsoup4 from 4.12.0.20240106 to 4.12.0.20240229 (#125) #177

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry export --with dev -f requirements.txt --output /tmp/requirements.txt
pip install -r /tmp/requirements.txt
- name: Lint
run: |
source scripts/lint.sh
- name: Test
run: |
source scripts/test.sh