Skip to content

Add identifier property support for source entity type. (#114) #43

Add identifier property support for source entity type. (#114)

Add identifier property support for source entity type. (#114) #43

Workflow file for this run

name: lint
on:
pull_request:
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install pre-commit hooks
run: |
pip install -U pip==23.1.0
pip install -U pre-commit==3.4.0
pre-commit install
- name: Run pre-commit hooks
run: |
pre-commit run --all-files