good
This commit is contained in:
24
examples/cs2-silent-aim-master/.github/workflows/msbuild.yml
vendored
Normal file
24
examples/cs2-silent-aim-master/.github/workflows/msbuild.yml
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
name: msbuild
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "master" ]
|
||||
pull_request:
|
||||
branches: [ "master" ]
|
||||
permissions:
|
||||
contents: read
|
||||
jobs:
|
||||
build:
|
||||
runs-on: windows-2022
|
||||
strategy:
|
||||
matrix:
|
||||
toolset: [v143, ClangCL]
|
||||
configuration: [Debug, Release]
|
||||
steps:
|
||||
- name: setup actions
|
||||
uses: actions/checkout@v3
|
||||
- name: setup environment
|
||||
uses: microsoft/setup-msbuild@v1.1
|
||||
- name: build
|
||||
shell: cmd
|
||||
run: msbuild asphyxia.sln /p:Configuration=${{matrix.configuration}} /p:Platform=x64 /p:PlatformToolset=${{ matrix.toolset }}
|
||||
Reference in New Issue
Block a user