Skip to content

Merge pull request #128 from MirrorNetworking/FixLogOutput #3

Merge pull request #128 from MirrorNetworking/FixLogOutput

Merge pull request #128 from MirrorNetworking/FixLogOutput #3

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: windows-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Build with dotnet
run: dotnet build
--configuration Release
- name: Test with dotnet
run: dotnet test Telepathy.Tests\Telepathy.Tests.csproj
- name: Run load test for one minute
shell: cmd
run: |
cd LoadTest\bin\Release\net471
LoadTest.exe timed 6565 60
echo Ended Load Test
- name: Upload a Build Artifact
uses: actions/upload-artifact@v2.2.4
with:
# Artifact name
name: TelepathyRelease # optional, default is artifact
# A file, directory or wildcard pattern that describes what to upload
path: Telepathy\bin\Release\
# The desired behavior if no files are found using the provided path.