feat(tools_gw): create new code logic to perform inserts of relations… #736
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python flake8 | |
on: | |
push: | |
branches: ['dev', 'master', 'release/**', 'feature/**'] | |
pull_request: | |
branches: ['dev', 'master', 'release/**', 'feature/**'] | |
jobs: | |
lint: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- python-version: 3.9 | |
os: ubuntu-latest | |
- python-version: "3.10" | |
os: ubuntu-latest | |
- python-version: 3.11 | |
os: ubuntu-latest | |
- python-version: 3.12 | |
os: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pip install flake8 | |
- name: Lint with flake8 | |
run: | | |
flake8 . |