The first commit adds a CI workflow that will run on PRs. For now we only check that the code is well formatted, and that the doc is building.
The second commit formats the codebase, using the following bash script:
#!/usr/bin/env bash
files=$(find . -name '*.rs')
IFS=$'\n'; for file in $files; do
rustfmt "$file"
done
The first commit adds a CI workflow that will run on PRs. For now we only check that the code is well formatted, and that the doc is building. The second commit formats the codebase, using the following bash script: