Merge pull request #531 from christianhelle/renovate/vstest-monorepo #1170
This file contains 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: | |
workflow_dispatch: | |
push: | |
paths-ignore: | |
- '**/*' | |
- '!.github/workflows/build.yml' | |
- '!src/**/*.csproj' | |
- '!src/**/*.cs' | |
branches: | |
- 'main' | |
pull_request: | |
paths-ignore: | |
- '**/*' | |
- '!.github/workflows/build.yml' | |
- '!src/**/*.csproj' | |
- '!src/**/*.cs' | |
branches: | |
- '*' | |
env: | |
VERSION: 1.4.1.${{ github.run_number }} | |
jobs: | |
build: | |
name: 👌 Verify build | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🛒 Checkout repository | |
uses: actions/checkout@v4 | |
- name: 🛠️ Prepare | |
continue-on-error: true | |
run: | | |
rm -rf src/Refitter.SourceGenerator.Tests/AdditionalFiles/Generated | |
dotnet build src/Refitter.SourceGenerator.Tests/Refitter.SourceGenerator.Tests.csproj | |
- name: 🛠️ Build | |
run: dotnet build -c Release src/Refitter.sln -p:UseSourceLink=true -p:PackageVersion="${{ env.VERSION }}" -p:Version="${{ env.VERSION }}" | |
- name: 🧪 Test | |
run: dotnet test src/Refitter.sln -c Release | |
- name: 🗳️ Upload | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Packages | |
path: | | |
**/*.nupkg | |
README.md | |
- name: 🛠️ Build Docs | |
run: | | |
dotnet tool update -g docfx | |
docfx docs/docfx_project/docfx.json |