[TRANSLATE] -Translating source code files #19
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: Build & Test SharpCore microkernel | |
| on: | |
| push: | |
| branches: [mainline] | |
| pull_request: | |
| branches: [mainline] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: '8.x' | |
| - name: Restore | |
| run: dotnet restore SharpCore-Kernel.sln | |
| - name: Build | |
| run: dotnet build SharpCore-Kernel.sln --configuration Release --no-restore | |
| # - name: Test | |
| # run: dotnet test SharpCore-Kernel.sln --no-build --verbosity normal |