Skip to content

#195 add repo url (#196) #19

#195 add repo url (#196)

#195 add repo url (#196) #19

Workflow file for this run

name: build
on:
push:
branches:
- master
jobs:
build:
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
runs-on: ${{matrix.os}}
env:
DOTNET_CLI_TELEMETRY_OPTOUT: 1
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.401
- name: Build
run: dotnet build -c Release
- name: Test
run: |
cd test/WebSocket4Net.Tests
dotnet test