Skip to content

System.AccessViolationException Error Fix #280

System.AccessViolationException Error Fix

System.AccessViolationException Error Fix #280

Workflow file for this run

name: Format Check
on: [push, pull_request]
jobs:
build:
# Prevent running workflow twice on a PR from a non-fork
# We could use Skip Duplicate Actions, but this is shorter
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.202
- name: Check format
run: |
dotnet format --verify-no-changes