Skip to content

Merge pull request #8 from citynetwork/bugfix/fedora41 #19

Merge pull request #8 from citynetwork/bugfix/fedora41

Merge pull request #8 from citynetwork/bugfix/fedora41 #19

Workflow file for this run

---
name: DIB
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
linters:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- 3.8
steps:
- name: Checkout
uses: actions/checkout@v2
with:
path: "${{ github.repository }}"
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install tox
- name: Test with tox
run: |
cd ${{ github.repository }}
tox -e linters