Skip to content

Commit

Permalink
Merge pull request #10 from congqixia/enhance/add_test_lint_workflow
Browse files Browse the repository at this point in the history
enhance: Add test & lint workflow for pull requests
  • Loading branch information
congqixia authored Mar 12, 2024
2 parents 6f71d73 + 8fb1c6a commit e8e2c5e
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Lint and Test

on:
pull_request:
paths:
- "src/**"
- "tests/**"
- pyproject.toml

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
build:
name: Run Lint and Tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9']

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Install Hatch
run: pip install --upgrade hatch

- name: Lint
run: hatch run lint:all

- name: Run tests
run: hatch run cov

0 comments on commit e8e2c5e

Please sign in to comment.