diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml new file mode 100644 index 0000000..55d55bf --- /dev/null +++ b/.github/workflows/pr.yml @@ -0,0 +1,15 @@ +on: + push: + branches: + - "**" + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/setup-dotnet@v1 + - uses: actions/checkout@v2 + - name: install & run csharpier + run: | + dotnet tool install -g csharpier + dotnet csharpier \ No newline at end of file