mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
1600e0f7da
* [CI] Add wsl linter * Implement wsl recommendations Co-authored-by: Clément Michaud <clement.michaud34@gmail.com>
24 lines
560 B
Go
24 lines
560 B
Go
package main
|
|
|
|
import (
|
|
log "github.com/sirupsen/logrus"
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/authelia/authelia/internal/utils"
|
|
)
|
|
|
|
// RunCI run the CI scripts.
|
|
func RunCI(cmd *cobra.Command, args []string) {
|
|
log.Info("=====> Build stage <=====")
|
|
|
|
if err := utils.CommandWithStdout("authelia-scripts", "--log-level", "debug", "build").Run(); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
log.Info("=====> Unit testing stage <=====")
|
|
|
|
if err := utils.CommandWithStdout("authelia-scripts", "--log-level", "debug", "unittest").Run(); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|