Bump omni_rpc/chains from 425f1a1
to b80dbcc
#118
Workflow file for this run
This file contains 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: CI workflow | |
on: | |
pull_request: | |
jobs: | |
CodeQualityChecks: | |
name: Static Code Analysis | |
runs-on: ubuntu-latest | |
steps: | |
- uses: step-security/harden-runner@v2 | |
with: | |
disable-sudo: true | |
egress-policy: block | |
allowed-endpoints: > | |
files.pythonhosted.org:443 | |
github.com:443 | |
install.python-poetry.org:443 | |
pypi.org:443 | |
- uses: actions/checkout@v4 | |
- name: Set up Python environment | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: flake8 Lint | |
uses: py-actions/flake8@v2 | |
- name: Black lint | |
uses: psf/black@stable | |
- name: isort | |
uses: isort/isort-action@v1 | |
with: | |
configuration: --force-single-line-imports --check-only --diff | |