From 8fb1c6af0b3cd43f9de6be638975ed4f3818fd57 Mon Sep 17 00:00:00 2001 From: Congqi Xia Date: Tue, 12 Mar 2024 12:47:41 +0800 Subject: [PATCH] enhance: Add test & lint workflow for pull requests Signed-off-by: Congqi Xia --- .github/workflows/test.yml | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..61dd20a --- /dev/null +++ b/.github/workflows/test.yml @@ -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