Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-yin committed Jun 6, 2024
1 parent e347b76 commit d96d25d
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/runtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,23 @@ on:
- main

jobs:

code-style-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: pip
- name: Install dependencies
run: |
pip install -r requirements-dev.txt
- name: Check code style
run: |
pre-commit run --all-files
runtests:
runs-on: ubuntu-latest
env:
Expand Down

0 comments on commit d96d25d

Please sign in to comment.