Rewrite README as brief, plain-worded user documentation. #8
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| global-json-file: global.json | |
| - name: Check formatting | |
| run: | | |
| dotnet tool restore | |
| dotnet csharpier check . | |
| - name: Build | |
| run: dotnet build --configuration Release /warnaserror | |
| - name: Test | |
| run: dotnet test --configuration Release --no-build |