different form fill info allocation to fix mem read issues #64
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |