Skip to content

Bump requests from 2.32.4 to 2.33.0 (#59) #45

Bump requests from 2.32.4 to 2.33.0 (#59)

Bump requests from 2.32.4 to 2.33.0 (#59) #45

Workflow file for this run

name: Black, Flake, Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install libcairo2-dev libgirepository1.0-dev
python -m pip install --upgrade pip
pip install pipenv
pipenv install --dev
- name: Run black
run: pipenv run black
- name: Run flake8
run: pipenv run flake
- name: Run tests
run: pipenv run test