Skip to content

Imrpove CI

Imrpove CI #1712

Workflow file for this run

name: Build&Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
defaults:
run:
working-directory: ./src
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: ./.github/actions/setup.yml
- name: Build and test
run: |
dotnet restore
dotnet build --configuration Release --no-restore
test:
runs-on: windows-latest
needs: build
steps:
- uses: actions/checkout@v2
with:
submodules: true
- run: dotnet test --configuration Release --no-build --verbosity normal