Skip to content

Commit

Permalink
[CI] Add github workflow for the windows core dll
Browse files Browse the repository at this point in the history
  • Loading branch information
vlabo committed Nov 25, 2024
1 parent 1b4f5f1 commit dff2f34
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/windows-dll.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Windows Portmaster Core DLL

on:
push:
paths:
- 'windows_core_dll/**'
branches:
- master
- develop

pull_request:
paths:
- 'windows_core_dll/**'
branches:
- master
- develop
workflow_dispatch:

jobs:
build:
name: Build
runs-on: windows-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2
- name: Build DLL
run: msbuild windows_core_dll\windows_core_dll.sln -t:rebuild -property:Configuration=Release
1 change: 1 addition & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ linters:
- interfacer
- ireturn
- lll
- mnd
- musttag
- nestif
- nilnil
Expand Down

0 comments on commit dff2f34

Please sign in to comment.