File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- name : CI
1+ # name: CI
22
3- on :
4- push :
5- branches :
6- - main
7- - dev
8- pull_request :
3+ # on:
4+ # push:
5+ # branches:
6+ # - main
7+ # - dev
8+ # pull_request:
99
10- jobs :
11- build :
12- runs-on : ubuntu-latest
10+ # jobs:
11+ # build:
12+ # runs-on: ubuntu-latest
1313
14- steps :
15- - name : Check out repository
16- uses : actions/checkout@v4
17- with :
18- fetch-depth : 0
14+ # steps:
15+ # - name: Check out repository
16+ # uses: actions/checkout@v4
17+ # with:
18+ # fetch-depth: 0
1919
20- - name : Set up .NET SDK
21- uses : actions/setup-dotnet@v4
22- with :
23- dotnet-version : 8.0.x
20+ # - name: Set up .NET SDK
21+ # uses: actions/setup-dotnet@v4
22+ # with:
23+ # dotnet-version: 8.0.x
2424
25- - name : Restore
26- run : dotnet restore LiteDB.sln
25+ # - name: Restore
26+ # run: dotnet restore LiteDB.sln
2727
28- - name : Build
29- run : dotnet build LiteDB.sln --configuration Release --no-restore
28+ # - name: Build
29+ # run: dotnet build LiteDB.sln --configuration Release --no-restore
3030
31- - name : Test
32- timeout-minutes : 5
33- run : dotnet test LiteDB.sln --configuration Release --no-build --verbosity normal --settings tests.runsettings --logger "trx;LogFileName=TestResults.trx" --logger "console;verbosity=detailed"
31+ # - name: Test
32+ # timeout-minutes: 5
33+ # run: dotnet test LiteDB.sln --configuration Release --no-build --verbosity normal --settings tests.runsettings --logger "trx;LogFileName=TestResults.trx" --logger "console;verbosity=detailed"
You can’t perform that action at this time.
0 commit comments