Skip to content

decode images instead of comparing their bytes directly since i think… #8

decode images instead of comparing their bytes directly since i think…

decode images instead of comparing their bytes directly since i think… #8

Workflow file for this run

name: run tests
on:
push:
branches: [ master ]
paths-ignore:
- '**/README.md'
- '**/LICENSE'
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
include-prerelease: true
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal