Skip to content

Commit

Permalink
Github Actions (#65)
Browse files Browse the repository at this point in the history
* Add Github Actions

* Make pylint happy

* Disable duplicate code
  • Loading branch information
Santobert authored Dec 6, 2020
1 parent 7397101 commit 910e5f7
Show file tree
Hide file tree
Showing 8 changed files with 627 additions and 13 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Run Checks

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup
uses: actions/setup-python@v2
with:
python-version: "3.8"
architecture: "x64"
- run: pip install -r requirements.txt
- run: black --check .
- run: pylint pybotvac
Loading

0 comments on commit 910e5f7

Please sign in to comment.