This fixes the workflow failing at "Build and install JAX" step as it wasn't able to run git command to fetch the jaxlib git hash
Without git present on the PATH, it seems that actions/checkout (from its logs) will download the code with the GitHub REST API. This results in the code not being a git repository and therefore any subsequent git commands fail.
Install git before actions/checkout
This fixes the workflow failing at "Build and install JAX" step as it wasn't able to run git command to fetch the
jaxlib
git hashWithout git present on the PATH, it seems that
actions/checkout
(from its logs) will download the code with the GitHub REST API. This results in the code not being a git repository and therefore any subsequent git commands fail.