Update lexicons fetched from 6a3e781 committed 2024-12-18T22:46:05Z #817
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: Linter and code style check | |
on: [ pull_request ] | |
permissions: | |
contents: read | |
jobs: | |
ruff: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Run Cimon (eBPF). | |
uses: cycodelabs/cimon-action@v0 | |
with: | |
prevent: true | |
allowed-hosts: > | |
files.pythonhosted.org | |
pypi.org | |
- name: Checkout repository. | |
uses: actions/checkout@v4 | |
- name: Setup Python. | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Run linter check. | |
uses: astral-sh/ruff-action@v1 | |
with: | |
version: 0.7.0 | |
- name: Run code style check. | |
uses: astral-sh/ruff-action@v1 | |
with: | |
version: 0.7.0 | |
args: "format --check" |