You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -54,14 +54,14 @@ We will also need to specify the build directory for Coderrect.
54
54
55
55
### For Fortran projects
56
56
You will need to install the fortran compiler first. For example:
57
-
```
57
+
```yaml
58
58
- name: Install fortran
59
59
run: |
60
60
sudo apt-get update -y
61
61
sudo apt-get install -y gfortran
62
62
```
63
63
Then it is likely that you need to specify the fortran compiler when you use `make`. If so, you should also pass the full compilation command to Coderrect. (`gcc` is pre-installed in the Github Action environment.)
@@ -76,7 +76,7 @@ For more details, take a look at this [cmake project](https://github.com/coderre
76
76
- Description: The command to build your project. For example, the command to build your whole project might be `make all` instead of `make`.
77
77
- `cleanCommand`
78
78
- Default: `"make clean"`
79
-
- Description: The command to clean your previous build. Coderrect need to capture the building process of your project for analysis, therefore if your have a test build before applying Coderrect, we need to clean your test build.
79
+
- Description: The command to clean your previous build. Coderrect needs to capture the building process for analysis, therefore if you have done a test build before applying Coderrect, we need to clean your test build first.
80
80
- `buildPath`
81
81
- Default: `"."`
82
82
- Description: The relative path for your cmake project's build directory.
0 commit comments