File tree Expand file tree Collapse file tree 2 files changed +42
-0
lines changed
Expand file tree Collapse file tree 2 files changed +42
-0
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+ on : [push, pull_request]
3+ jobs :
4+ job :
5+ name : CI
6+ runs-on : ubuntu-latest
7+ steps :
8+ - uses : actions/checkout@v4
9+ - uses : actions/setup-dotnet@v4
10+ with :
11+ dotnet-version : ' 8.0.x'
12+ - name : Build
13+ run : dotnet build
Original file line number Diff line number Diff line change 1+ name : Installer CI
2+ on :
3+ push :
4+ paths :
5+ - ' installer/**'
6+ pull_request :
7+ paths :
8+ - ' installer/**'
9+ jobs :
10+ job :
11+ defaults :
12+ run :
13+ working-directory : ./installer
14+ strategy :
15+ fail-fast : false
16+ matrix :
17+ os : [windows-latest, ubuntu-latest]
18+ name : Installer CI on ${{ matrix.os }}
19+ runs-on : ${{ matrix.os }}
20+ steps :
21+ - uses : actions/checkout@v4
22+ - uses : actions/setup-python@v5
23+ with :
24+ python-version : ' 3.11'
25+ - name : Install requirements
26+ run : pip install -r requirements.txt
27+ - name : Build
28+ run : python build.py
29+
You can’t perform that action at this time.
0 commit comments