Skip to content

chore: update README.md to provide installation instruction #48

chore: update README.md to provide installation instruction

chore: update README.md to provide installation instruction #48

Workflow file for this run

name: ci
on:
create:
branches:
- "CQ-*"
pull_request:
branches:
- main
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.9'
- run: |
git config --global user.email "[email protected]"
git config --global user.name "ci"
make install_dev
make isort_check
make lint
make test
make package