Skip to content

Commit

Permalink
Add make tests
Browse files Browse the repository at this point in the history
  • Loading branch information
minhqdao committed Jul 31, 2024
1 parent d8e1541 commit 1ed23cc
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,34 @@ jobs:
- run: ${{ steps.setup-fortran.outputs.fc }} --version
- run: make test FC=${{ steps.setup-fortran.outputs.fc }}

make-test-mingw64-gcc:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v4
- uses: msys2/setup-msys2@v2
with:
msystem: mingw64
install: >-
mingw-w64-x86_64-gcc-fortran
- run: make test

make-test-ucrt64-gcc:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v4
- uses: msys2/setup-msys2@v2
with:
msystem: ucrt64
install: >-
mingw-w64-ucrt-x86_64-gcc-fortran
- run: make test

format:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 1ed23cc

Please sign in to comment.