chore(deps): bump SkiaSharp.NativeAssets.NanoServer from 2.88.8 to 3.116.1 #138
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: build debug | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "main" | |
env: | |
BUILD_CONFIG: Debug | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: guitarrapc/actions/.github/actions/setup-dotnet@main | |
with: | |
restore-wasm-workload: true | |
dotnet-version: | | |
6.0.x | |
7.0.x | |
8.0.x | |
- name: Build | |
run: dotnet build -c ${{ env.BUILD_CONFIG }} SkiaSharp.QrCode.Linux.slnf | |
- name: Test | |
run: dotnet test -c ${{ env.BUILD_CONFIG }} SkiaSharp.QrCode.sln --logger GitHubActions --logger "console;verbosity=normal" | |
run: | |
needs: [build] | |
strategy: | |
matrix: | |
dotnet-version: ["6.0", "7.0", "8.0"] | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: guitarrapc/actions/.github/actions/setup-dotnet@main | |
with: | |
restore-wasm-workload: true | |
dotnet-version: | | |
6.0.x | |
7.0.x | |
8.0.x | |
# ManualGenerate | |
- name: Run ManualGenerate (${{ matrix.dotnet-version}}) | |
run: dotnet run --project ./ManualGenerate.csproj -c ${{ env.BUILD_CONFIG }} -f net${{ matrix.dotnet-version }} | |
working-directory: ./samples/ManualGenerate | |
# SimpleGenerate | |
- name: Run SimpleGenerate (${{ matrix.dotnet-version}}) | |
run: dotnet run --project ./samples/SimpleGenerate/SimpleGenerate.csproj -c ${{ env.BUILD_CONFIG }} -f net${{ matrix.dotnet-version }} | |
# LinuxRunSamples | |
- name: Run Linux Docker Compose (${{ matrix.dotnet-version}}) | |
run: docker compose -f ./samples/LinuxCompose/compose.override.${{ matrix.dotnet-version }}.yaml up |