Skip to content

Commit

Permalink
Add linting job
Browse files Browse the repository at this point in the history
  • Loading branch information
treubig26 committed Oct 19, 2023
1 parent 4d33e00 commit ddcafe9
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
name: 🐛📦 Build & Test

on:
workflow_dispatch:

push:

pull_request:
branches:
- master

jobs:
code-linting:
name: 📡 Code Linting
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.8

- name: Install Armory
run: pip3 install --no-compile --editable '.[developer]'

- name: Install pre-commit
run: pip3 install pre-commit

- name: Lint
run: make lint

# static-analysis:

# unit-tests:

# generate-docs:

# build:

0 comments on commit ddcafe9

Please sign in to comment.