Skip to content

Update dependency python-gitlab to v4 - autoclosed #151

Update dependency python-gitlab to v4 - autoclosed

Update dependency python-gitlab to v4 - autoclosed #151

Workflow file for this run

name: Checks
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
check:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
env:
- flake8
- pylint
- bandit
- readme
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install prerequisites
run: python -m pip install --upgrade setuptools pip wheel tox
- name: Run ${{ matrix.env }}
run: tox -e ${{ matrix.env }}