Update README.md with new features and clarifications #8
Workflow file for this run
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(Build and Test) | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| build-and-test: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| # If preinstalled in windows-latest, this step can be skipped | |
| # - name: Setup .NET ${{ matrix.dotnet-version }} | |
| # uses: actions/setup-dotnet@v4 | |
| # with: | |
| # dotnet-version: ${{ matrix.dotnet-version }} | |
| - name: Build | |
| run: dotnet build --configuration Release | |
| # no test implemented yet |