Skip to content

fix: error occurred when trying to apply patches #50

fix: error occurred when trying to apply patches

fix: error occurred when trying to apply patches #50

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