We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit 3068037Copy full SHA for 3068037
6 files changed
.github/workflows/ci.yml
@@ -0,0 +1,24 @@
1
+name: ci
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+jobs:
8
+ build-windows:
9
+ runs-on: windows-latest
10
+ steps:
11
+ - name: checkout
12
+ uses: actions/checkout@v4
13
14
+ - name: setup msvc
15
+ uses: ilammy/msvc-dev-cmd@v1
16
17
+ - name: build x64 release
18
+ shell: powershell
19
+ run: |
20
+ if (Test-Path "x64/example.sln") {
21
+ msbuild "x64/example.sln" /m /p:Configuration=Release /p:Platform=x64
22
+ } else {
23
+ Write-Error "x64/example.sln not found"
24
+ }
.github/workflows/pr_notification.yml
@@ -0,0 +1,12 @@
+name: Pull Request Notification
+ pull_request_target:
+ types:
+ - opened
+ notify:
+ uses: KeyAuth/.github/.github/workflows/pr_notification_global.yml@main
+ secrets:
+ DISCORD_PR: ${{ secrets.DISCORD_PR }}
0 commit comments