Update lexicons fetched from a8e1f90 committed 2024-08-22T22:00:01Z #669
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: 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: chartboost/ruff-action@v1 | |
with: | |
version: 0.1.2 | |
- name: Run code style check. | |
uses: chartboost/ruff-action@v1 | |
with: | |
version: 0.1.2 | |
args: format --check |