refactor(documentation): update v16 for custom domain #162
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 Linux | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - testing | |
| paths: | |
| - 'src/**' | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: "Setup dotnet" | |
| uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: 8.x.x | |
| - name: "Build SimpleW" | |
| run: | | |
| cd src/SimpleW | |
| dotnet restore | |
| dotnet build --configuration Release | |
| #- name: "Build SimpleW.Newtonsoft" | |
| # run: | | |
| # cd src/SimpleW.Newtonsoft | |
| # dotnet restore | |
| # dotnet build --configuration Release | |
| #- name: "test" | |
| # run: | | |
| # cd src/test | |
| # dotnet test |