touch #218
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 | |
| on: | |
| pull_request: {} | |
| push: | |
| branches: | |
| - '**' # matches every branch | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v3 | |
| - name: setup .net core | |
| uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: '8.*' | |
| - name: build | |
| run: dotnet build | |
| working-directory: . | |
| # - name: test | |
| # run: | | |
| # dotnet test | |
| # if [ $? -eq 0 ]; then | |
| # echo TESTS PASSED | |
| # else | |
| # echo TESTS FAILED | |
| # exit 1 | |
| # fi | |
| # working-directory: ./BlazorDiffusion.Tests | |