chore(deps): update dependency nunit.analyzers to 4.5.0 #34
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: "Build Library" | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- "AITSYS.Vimeo.Ott.Docs/**" | |
- "*.md" | |
- "*.json" | |
pull_request: | |
merge_group: | |
workflow_dispatch: | |
env: | |
DOTNET_NOLOGO: true | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
DOTNET_SYSTEM_GLOBALIZATION_INVARIANT: true | |
jobs: | |
build: | |
timeout-minutes: 15 | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
name: Build library | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/[email protected] | |
with: | |
dotnet-version: 9.x | |
- name: Restore dependencies | |
run: dotnet restore --no-cache -f -v minimal AITSYS.Vimeo.Ott.sln | |
- name: Build library | |
run: dotnet build -c Release -v minimal --no-restore AITSYS.Vimeo.Ott.sln | |
- name: Test library | |
run: dotnet test -v minimal -c Release --no-restore --no-build AITSYS.Vimeo.Ott.sln | |
env: | |
VIMEO_TEST_TOKEN: ${{ secrets.VIMEO_TEST_TOKEN }} | |
VIMEO_TEST_USER: ${{ secrets.VIMEO_TEST_USER }} | |
pack: | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
name: "Pack and Artifact" | |
needs: build | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/[email protected] | |
with: | |
dotnet-version: 9.x | |
- name: Restore Packages | |
run: dotnet restore --no-cache -f -v minimal AITSYS.Vimeo.Ott.sln | |
- name: Build library | |
run: dotnet build -c Release -v minimal --no-restore AITSYS.Vimeo.Ott.sln | |
- name: Publish library | |
run: dotnet pack -c Release -v minimal --no-build --no-restore --include-symbols --include-source -o ./artifacts AITSYS.Vimeo.Ott.sln | |
- name: Upload artifacts | |
uses: actions/[email protected] | |
with: | |
name: AITSYS.Vimeo.Ott | |
path: ./artifacts/ |