Merge branch 'main' into discord-rpc #3083
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Networking Tests | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
build: | |
name: Test Networking | |
runs-on: [self-hosted] | |
environment: test | |
env: | |
NEXUS_API_KEY: ${{ secrets.NEXUS_API_KEY }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: "recursive" | |
lfs: true | |
- name: Print debug info | |
run: dotnet --info | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --no-restore | |
- name: Tests | |
run: dotnet test --no-build --logger "GitHubActions" --filter "RequiresNetworking=True" --blame-hang-timeout 20m | |