Skip to content

Commit

Permalink
Create pylama.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
K0ntr4 authored Apr 10, 2024
1 parent 44c4d6f commit 763c060
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/pylama.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Pylama

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
pylama:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylama
- name: Run Pylama
run: pylama --options .pylama.ini .

0 comments on commit 763c060

Please sign in to comment.