You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 13, 2023. It is now read-only.
I noticed on a PR (jamiebrynes7/spatialos-sdk-rs#136) that GitHub actions was reporting that the Clippy step was failing, but no errors were being reported.
After turning on debug output, each clippy lint is followed by:
I noticed on a PR (jamiebrynes7/spatialos-sdk-rs#136) that GitHub actions was reporting that the Clippy step was failing, but no errors were being reported.
After turning on debug output, each clippy lint is followed by:
Example
This line originates from https://github.com/actions-rs/clippy-check/blob/master/src/check.ts#L70 where we attempt to parse each line of standard output as JSON.
Manually checking the JSON output from clippy, it seems to be valid.
Example JSON output (prettified)
As far as I can tell, this JSON output matches the interfaces defined in https://github.com/actions-rs/clippy-check/blob/master/src/check.ts#L10
I'm not very familiar with Typescript or the semantics of
JSON.parse
and how@actions/exec
(https://github.com/actions/toolkit/tree/master/packages/exec) pipes standard output through, so despite my best efforts I'm struggling to drill down to the root of this.I'm using Rust 1.39.0 and the clippy action is running on the
macOS-latest
machine.The text was updated successfully, but these errors were encountered: