Skip to content

build(deps): bump instagrapi from 2.0.0 to 2.0.3 #272

build(deps): bump instagrapi from 2.0.0 to 2.0.3

build(deps): bump instagrapi from 2.0.0 to 2.0.3 #272

Workflow file for this run

name: Python application
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.12'
- run: pipx install poetry
- name: Install dependencies
run: |
poetry install
poetry run pre-commit install
- run: poetry run pre-commit run -a
- run: poetry run pytest --cov=cronjobs
- run: poetry run coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}