github.com/altipla-consulting/ravendb-go-client@v0.1.3/scripts/compile.ps1 (about)

     1  #!/usr/bin/env pwsh
     2  
     3  # sanity check: make sure that code and tests do compile
     4  # compiling tests will also compile the code
     5  
     6  go test -tags for_tests -v -c ./tests
     7  go test -v -c ./examples
     8  go test -v -c ./dive-into-raven
     9