Skip to content

Commit

Permalink
update ja4-db scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
superstes committed Dec 6, 2024
1 parent beb5a6d commit bb62df8
Show file tree
Hide file tree
Showing 10 changed files with 928 additions and 29 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
---

name: Lint

on:
push:
branches: [latest]
paths:
- '**.py'
- '.github/workflows/lint.yml'
- 'requirements_lint.txt'
- '.pylintrc'
pull_request:
branches: [latest]
paths:
- '**.py'
- '.github/workflows/lint.yml'
- 'requirements_lint.txt'
- '.pylintrc'
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 1
defaults:
run:
shell: bash

steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.ref }}

- name: Install python
uses: actions/setup-python@v4
with:
python-version: '3.10'

- name: Install dependencies
run: |
pip install -r requirements_lint.txt >/dev/null
- name: Running PyLint
run: |
pylint --version
pylint --rcfile .pylintrc --recursive=y .
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
*.json
*.map
*.csv
ja4.dev.lua
Loading

0 comments on commit bb62df8

Please sign in to comment.