Skip to content

Latest commit

 

History

History
20 lines (11 loc) · 914 Bytes

Interpreting-GitHubActions-Results.md

File metadata and controls

20 lines (11 loc) · 914 Bytes

Interpreting GitHub Actions Results

Detailed Explanation

Our workflow tests run in parallel as to alleviate the overall pressure on the queue.

GHCI Status

In the example above, the lint checks and Mypy checks have failed. However, the rest of the tests have passed.

We also have two checks that have been skipped due to the failure of one of the e2e tests. In the event of an e2e test failure, any remaining e2e tests that are queued or currently running will be terminated and marked as "skipped."

What should you do?

  • Go to 'Details' to view the test logs. GHCI Logs
  • Select the job under 'Jobs' to see the logs for that particular job.
  • Following the example above, you must first fix the failing CI checks then push your changes.