chore: add workflows and documentation generation' #4
Workflow file for this run
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: Pull Request | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths-ignore: | |
- "**/.gitignore" | |
- "**/.editorconfig" | |
- .github/** | |
- .vscode/** | |
branches: | |
- main | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup .NET 8 | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.x | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Format code | |
run: dotnet format --verify-no-changes --verbosity diagnostic | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup .NET 8 | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.x | |
- name: Install report generator | |
run: dotnet tool install --global dotnet-reportgenerator-globaltool --version 5.3.7 | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Run tests | |
env: | |
SKIP_EXAMPLES: true | |
AnthropicApiKey: ${{ secrets.ANTHROPIC_KEY }} | |
run: dotnet test | |
- name: Upload html coverage report | |
uses: actions/upload-artifact@v4 | |
with: | |
name: html-report | |
path: tests/AnthropicClient.Tests/TestResults/coverage/report/ | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: tests/AnthropicClient.Tests/TestResults/coverage/coverage.cobertura.xml |