Skip to content

Commit

Permalink
code quality checks with wily
Browse files Browse the repository at this point in the history
  • Loading branch information
luizirber committed Dec 9, 2019
1 parent d3333ba commit 2ef0132
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/code_quality.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Code quality checks

on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
wily:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1

- name: fetch refs and tags
run: git fetch --all

- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: "3.8"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install wily
- name: Check code quality changes with wily
run: |
wily build src/
wily diff src/ -r origin/master

0 comments on commit 2ef0132

Please sign in to comment.