Skip to content

Draw Text

Draw Text #118

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@v3
with:
submodules: true
fetch-depth: 0
- uses: cardinalby/export-env-action@v2
with:
envFile: 'github.env'
- name: Build and test
run: |
git submodule update --force --recursive --init --remote
dotnet restore
dotnet build --configuration Debug --no-restore
dotnet test --configuration Debug --no-build --verbosity normal