We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 272711c commit dde25c0Copy full SHA for dde25c0
1 file changed
.github/workflows/CI-Fortran-format.yml
@@ -0,0 +1,23 @@
1
+name: CI-Fortran-format
2
+
3
+on:
4
+ pull_request:
5
+ branches: [ "master" ]
6
7
+jobs:
8
+ test:
9
+ runs-on: ubuntu-latest
10
+ strategy:
11
+ fail-fast: false
12
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - uses: foxtran/setup-codee@v1
16
17
+ - name: Run Fortran formatter
18
+ run: |
19
+ codee format . --verbose
20
21
+ - name: Check for uncommitted changes
22
23
+ git diff --exit-code
0 commit comments