Skip to content

Commit

Permalink
Use [email protected] in workflows
Browse files Browse the repository at this point in the history
Also enable compiler warning problem matchers
  • Loading branch information
GrieferAtWork committed Apr 23, 2023
1 parent 785b0bb commit 9b90a35
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ jobs:
config.mk
key: ${{ runner.os }}-configure

- name: Bind GCC problem matcher
uses: ammaraskar/gcc-problem-matcher@master

- name: Make
run: make -j $(nproc)

Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/windows-x32.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ jobs:
submodules: 'true'

- name: Add MSBuild to PATH
uses: microsoft/[email protected]
uses: microsoft/[email protected]

- name: Bind MSVC problem matcher
uses: ammaraskar/msvc-problem-matcher@master

- name: Make
run: msbuild /m /p:Configuration=Debug-MSVC /p:Platform=Win32 .vs\deemon.sln
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/windows-x64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ jobs:
submodules: 'true'

- name: Add MSBuild to PATH
uses: microsoft/[email protected]
uses: microsoft/[email protected]

- name: Bind MSVC problem matcher
uses: ammaraskar/msvc-problem-matcher@master

- name: Make
run: msbuild /m /p:Configuration=Debug-MSVC /p:Platform=x64 .vs\deemon.sln
Expand Down

0 comments on commit 9b90a35

Please sign in to comment.