Mish Ushakov
Mish Ushakov
Hey We have pushed some cool updates, such as Performance Testing, OpenAPI Import and gRPC support since the issue was opened Maybe you could take a fresh look on [our...
thanks for the detailed response also i found the [cxx](https://cxx.rs) module, which allows to interprop Rust and C++ would be cool to try out someday
I'm having the issue but with `@assistant/actions` package https://github.com/actions-on-google/assistant-actions-nodejs/issues/2
@flawiddsouza feel free to try [`cool-grpc`](https://github.com/stepci/cool-grpc) gRPC client we've built for [Step CI](https://github.com/stepci/stepci). Its goal is to be as easy as fetch API Let me know if you need any...
Thanks for leaving the issue and sorry for the wait. Will be investigating **tomorrow**
Wanted to come back to this. There's no `Location` check in Step CI. Could you clarify what you want to accomplish with the check?
Are you sure https://httpbin.org/redirect-to?url=/foo&status_code=301 has a Location header?
This is the response I get when I request it with my regular http client ``` HTTP/1.1 404 NOT FOUND Date: Tue, 18 Apr 2023 15:42:54 GMT Content-Type: text/html Content-Length:...
Have you tried checking redirects using `redirects` check? https://docs.stepci.com/reference/workflow-syntax.html#tests-test-steps-step-http-check-redirects Example for your case would be: ```yaml check: redirects: - foo/ ``` or ```yaml check: redirects: - https://httpbin.org/foo/ ```
Hey Sven, The reason it wasn't failing is because everything starting with / in Step CI is treated as regex (in checks). /foo/ matches /foo Here's what you could have...