Skip to content

chore(deps): bump pygithub from 2.7.0 to 2.8.1 #176

chore(deps): bump pygithub from 2.7.0 to 2.8.1

chore(deps): bump pygithub from 2.7.0 to 2.8.1 #176

Workflow file for this run

name: Lint and Test
on:
push:
branches-ignore:
- main
jobs:
lint-and-test:
name: Lint and Test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install dependencies
run: pip install poetry && poetry install --with=dev
- name: lint
run: poetry run black --check .
- name: test
run: poetry run pytest