Skip to content

chore(main): release 0.1.4 #117

chore(main): release 0.1.4

chore(main): release 0.1.4 #117

Workflow file for this run

name: CI
on:
push:
branches: main
pull_request:
jobs:
check-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Setup PDM
uses: pdm-project/setup-pdm@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pdm install
- name: Check type
run: pdm run check_type
- name: Check Lint
run: pdm run check_lint
- name: Check Format
run: pdm run check_format
- name: Test
run: pdm run test