Skip to content

Commit

Permalink
Merge pull request #60 from Mikeds36/main
Browse files Browse the repository at this point in the history
Create lintfmt.yml #37
  • Loading branch information
roeniss committed Jan 7, 2024
2 parents e5c0f69 + 0dd70f7 commit ea11116
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/lintfmt.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Execute Lint Formatting

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

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

- name: Install Python Dependencies
run: |
python -m pip install --upgrade pip
pip install black pylint
pip install -r requirements.txt
- name: Execute Lint Formatting
run: make lintfmt

0 comments on commit ea11116

Please sign in to comment.