Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
superstes committed Aug 19, 2023
0 parents commit e245e67
Show file tree
Hide file tree
Showing 7 changed files with 1,046 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/autolint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---

name: AutoLint

on:
push:
branches: [latest]
pull_request:
branches: [latest]

jobs:
build:
strategy:
matrix:
python-version: [3.10]
runs-on: ubuntu-latest

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
shell: bash

- name: Running PyLint
run: pylint --recursive=y .
shell: bash
Loading

0 comments on commit e245e67

Please sign in to comment.