Skip to content

different form fill info allocation to fix mem read issues #64

different form fill info allocation to fix mem read issues

different form fill info allocation to fix mem read issues #64

Workflow file for this run

name: Master Build
on:
push:
branches:
- master
jobs:
test-win:
name: Testing Windows
runs-on: windows-2019
steps:
- uses: actions/checkout@v1
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
- name: Run dotnet tests
run: |
cd src
dotnet test
- name: Run example dotnet tests
run: |
cd examples/nuget-usage/NugetUsageAnyCpu
dotnet test
cd ../NugetUsageX64
dotnet test
test-linux:
name: Test Linux
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
- name: Install GDI
run: |
sudo apt-get install -y libgdiplus
- name: Run dotnet tests
run: |
cd src
dotnet test
- name: Run example dotnet tests
run: |
cd examples/nuget-usage/NugetUsageAnyCpu
dotnet test
cd ../NugetUsageX64
dotnet test
test-osx:
name: Test MacOS
runs-on: macos-11
steps:
- uses: actions/checkout@v1
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
- name: Run dotnet tests
run: |
cd src
dotnet test
- name: Run example dotnet tests
run: |
brew install mono-libgdiplus
cd examples/nuget-usage/NugetUsageAnyCpu
dotnet test
cd ../NugetUsageX64
dotnet test