diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f837efaf..241a64a6 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -31,12 +31,6 @@ jobs: - name: Checkout uses: actions/checkout@v2 - - name: Git config - shell: bash - run: | - git config --global user.email "918734043@qq.com" - git config --global user.name "jmjoy" - - name: Install libclang run: sudo apt-get install -y llvm-10-dev libclang-10-dev diff --git a/phper-test/src/cli.rs b/phper-test/src/cli.rs index da1c9f08..104841f1 100644 --- a/phper-test/src/cli.rs +++ b/phper-test/src/cli.rs @@ -27,7 +27,7 @@ use crate::{context::Context, utils}; /// /// - `scripts` is the path of your php test scripts. /// -/// See [example hello integration test](https://github.com/jmjoy/phper/blob/master/examples/hello/tests/integration.rs). +/// See [example hello integration test](https://github.com/phper-framework/phper/blob/master/examples/hello/tests/integration.rs). pub fn test_php_scripts(exe_path: impl AsRef, scripts: &[&dyn AsRef]) { let condition = |output: Output| output.status.success(); let scripts = scripts @@ -46,7 +46,7 @@ pub fn test_php_scripts(exe_path: impl AsRef, scripts: &[&dyn AsRef] /// /// - `scripts` is the path of your php test scripts. /// -/// See [example hello integration test](https://github.com/jmjoy/phper/blob/master/examples/hello/tests/integration.rs). +/// See [example hello integration test](https://github.com/phper-framework/phper/blob/master/examples/hello/tests/integration.rs). pub fn test_php_scripts_with_lib(lib_path: impl AsRef, scripts: &[&dyn AsRef]) { let condition = |output: Output| output.status.success(); let scripts = scripts @@ -69,7 +69,7 @@ pub type ScriptCondition<'a> = (&'a dyn AsRef, &'a dyn Fn(Output) -> bool) /// - `scripts` is the slice of the tuple, format is `(path of your php test /// script, checker function or closure)`. /// -/// See [example logging integration test](https://github.com/jmjoy/phper/blob/master/examples/logging/tests/integration.rs). +/// See [example logging integration test](https://github.com/phper-framework/phper/blob/master/examples/logging/tests/integration.rs). pub fn test_php_scripts_with_condition( exe_path: impl AsRef, scripts: &[ScriptCondition<'_>], ) {