Skip to content

Commit

Permalink
Merge pull request #12 from angulo-solido:create-test-action
Browse files Browse the repository at this point in the history
Add test workflow
  • Loading branch information
MiguelNdeCarvalho authored May 10, 2022
2 parents c9d3fc6 + deeb88d commit 8289922
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Test Code

on:
pull_request:
branches:
- main

jobs:
lint-python:
name: Lint Python
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Lint Python (Flake8)
uses: grantmcconnaughey/lintly-flake8-github-action@master
with:
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 8289922

Please sign in to comment.