We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61eb733 commit e7be4dfCopy full SHA for e7be4df
1 file changed
.github/workflows/ci.yml
@@ -12,13 +12,12 @@ jobs:
12
steps:
13
- uses: actions/checkout@v3
14
15
- - run: |
16
- choco install xmake -y
17
- $env:PATH += ";$env:ProgramData\chocolatey\bin"
18
- xmake --version
+ - name: Install xmake
19
shell: pwsh
+ run: |
+ winget install xmake --silent --accept-source-agreements
+ xmake --version
20
21
22
23
- xmake build server
+ - name: Build server
24
+ run: xmake build server
0 commit comments