Skip to content

Create standard library #259

Create standard library

Create standard library #259

Workflow file for this run

name: Format check on pull request
on:
# Only run on pull requests.
# The option only-changed-files is not supported for push events.
pull_request:
branches: ["main"]
jobs:
dotnet-format:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Add dotnet-format problem matcher
uses: xt0rted/dotnet-format-problem-matcher@v1
- name: Restore dotnet tools
uses: xt0rted/dotnet-tool-restore@v1
- name: Run dotnet format
run: dotnet format --verify-no-changes