Skip to content

Instantly share code, notes, and snippets.

@felipetofoli
felipetofoli / dotnet-format.yml
Created August 8, 2021 15:47
GitHub Action for checking the code formatting of dotnet projects
name: dotnet format
on:
push:
paths:
- "**.cs"
- ".editorconfig"
jobs:
check-format:
@felipetofoli
felipetofoli / ci.yml
Created May 26, 2021 23:09
GitHub Actions for .Net Full Framework: Build & Test
name: Build and Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build: