修正SOGKSpace中的常量定义,使用MY_PI替代M_PI,并注释掉调试信息输出 #50
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Mirror to Gitee Repo | |
| on: | |
| push: | |
| branches-ignore: | |
| - "copilot/**" | |
| - "dependabot/**" | |
| - "pre-commit-ci-update-config" | |
| delete: | |
| create: | |
| # Ensures that only one mirror task will run at a time. | |
| concurrency: | |
| group: git-mirror | |
| jobs: | |
| git-mirror: | |
| if: github.repository_owner == 'deepmodeling' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: wearerequired/git-mirror-action@v1 | |
| env: | |
| SSH_PRIVATE_KEY: ${{ secrets.SYNC_GITEE_PRIVATE_KEY }} | |
| with: | |
| source-repo: "https://github.com/deepmodeling/deepmd-kit.git" | |
| destination-repo: "git@gitee.com:deepmodeling/deepmd-kit.git" |