Skip to content

Commit

Permalink
enable github action
Browse files Browse the repository at this point in the history
  • Loading branch information
wd0517 committed Aug 22, 2023
1 parent 2325569 commit 3fd92cb
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
on:
pull_request:
push:
branches:
- main

jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: Run lint
run: |
tox -e lint

0 comments on commit 3fd92cb

Please sign in to comment.