File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed
Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Tests
2+
3+ on :
4+ push :
5+ branches : [ main ]
6+ paths : [ .github/workflows/tests.yml, RtcServer/**, RtcServerTests/** ]
7+ pull_request :
8+ branches : [ main ]
9+ paths : [ .github/workflows/tests.yml, RtcServer/**, RtcServerTests/** ]
10+
11+ jobs :
12+ test :
13+ name : Run Tests
14+ runs-on : ubuntu-22.04
15+
16+ steps :
17+ - uses : actions/checkout@v4
18+
19+ - name : Install libmsquic
20+ run : |
21+ wget https://packages.microsoft.com/ubuntu/22.04/prod/pool/main/libm/libmsquic/libmsquic_2.4.8_amd64.deb && \
22+ sudo dpkg -i libmsquic_2.4.8_amd64.deb && \
23+ sudo apt install -fy
24+
25+ - name : Setup .NET
26+ uses : actions/setup-dotnet@v4
27+ with :
28+ dotnet-version : 9.x
29+
30+ - name : Restore projects
31+ run : dotnet restore
32+
33+ - name : Build projects
34+ run : dotnet build --no-restore
35+
36+ - name : Run tests
37+ run : dotnet test --no-build
You can’t perform that action at this time.
0 commit comments