Add a message to the actions debug log.
(msg: str)
| 4 | |
| 5 | |
| 6 | def debug(msg: str) -> None: |
| 7 | """Add a message to the actions debug log.""" |
| 8 | |
| 9 | for line in msg.splitlines(): |
| 10 | sys.stderr.write(f'::debug::{line}\n') |
| 11 | |
| 12 | def warning(msg: str) -> None: |
| 13 | """Add a warning message to the workflow log.""" |
no outgoing calls
no test coverage detected