Skip to content

Commit

Permalink
indendation
Browse files Browse the repository at this point in the history
  • Loading branch information
oschonrock committed Dec 17, 2024
1 parent 10b8d1d commit 841767d
Showing 1 changed file with 21 additions and 18 deletions.
39 changes: 21 additions & 18 deletions .github/workflows/msys2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,24 @@ jobs:
defaults:
run:
shell: msys2 {0}
strategy:
fail-fast: false
matrix:
sys: [ UCRT64, CLANG64, MINGW64, MINGW32 ]
steps:
- name: checkout code
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: install msys2
uses: msys2/setup-msys2@v2
with:
msystem: ${{matrix.sys}}
update: true
- name: Configure
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=debug
- name: Build
run: cmake --build build
strategy:
fail-fast: false
matrix:
sys: [ UCRT64, CLANG64, MINGW64, MINGW32 ]
steps:
- name: checkout code
uses: actions/checkout@v4
with:
submodules: 'recursive'

- name: install msys2
uses: msys2/setup-msys2@v2
with:
msystem: ${{matrix.sys}}
update: true

- name: Configure
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=debug

- name: Build
run: cmake --build build

0 comments on commit 841767d

Please sign in to comment.