Skip to content

Interpreting GitHubActions Results

Fumbani Banda edited this page Aug 5, 2023 · 1 revision

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.

Core documentation


Developing Oppia


Developer Reference

Clone this wiki locally