Bump SDK and stop testing below net8 #48
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: .NET | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
DOTNET_NOLOGO: true | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macOS-latest | |
- windows-latest | |
dotnet: | |
- { sdk: 8.0.x, framework: net8.0 } | |
runs-on: ${{matrix.os}} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # so that NerdBank.GitVersioning has access to history | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: ${{matrix.dotnet.sdk}} | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --no-restore | |
- name: Test | |
run: dotnet test --no-build --verbosity normal --framework ${{matrix.dotnet.framework}} | |
check-format: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup .NET SDK v8.0.x | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Prepare .NET tools | |
run: dotnet tool restore | |
- name: Run Fantomas | |
run: ./hooks/pre-push | |
analyze-code: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup .NET SDK v8.0.x | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Prepare .NET tools | |
run: dotnet tool restore | |
- name: Prepare analyzers | |
run: dotnet restore ./analyzers/analyzers.fsproj | |
- name: Restore dependencies | |
run: dotnet restore ./ShapeSifter/ShapeSifter.fsproj | |
- name: Run analyzers | |
run: dotnet fsharp-analyzers --project ./ShapeSifter/ShapeSifter.fsproj --analyzers-path ./.analyzerpackages/g-research.fsharp.analyzers/*/ --verbosity detailed --report ./analysis.sarif --treat-as-error GRA-STRING-001 GRA-STRING-002 GRA-STRING-003 GRA-UNIONCASE-001 GRA-INTERPOLATED-001 GRA-TYPE-ANNOTATE-001 GRA-VIRTUALCALL-001 GRA-IMMUTABLECOLLECTIONEQUALITY-001 GRA-JSONOPTS-001 GRA-LOGARGFUNCFULLAPP-001 GRA-DISPBEFOREASYNC-001 --exclude-analyzers PartialAppAnalyzer | |
- name: Upload SARIF file | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: analysis.sarif | |
nuget-pack: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # so that NerdBank.GitVersioning has access to history | |
- name: Setup .NET SDK v8.0.x | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Build | |
run: dotnet build ShapeSifter/ShapeSifter.fsproj --configuration Release | |
- name: Pack | |
run: dotnet pack ShapeSifter/ShapeSifter.fsproj --configuration Release | |
- name: Upload NuGet artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: nuget-package | |
path: ShapeSifter/bin/Release/ShapeSifter.*.nupkg | |
expected-pack: | |
needs: [nuget-pack] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download NuGet artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: nuget-package | |
- name: Check NuGet contents | |
# Verify that there is exactly one ShapeSifter.*.nupkg in the artifact that would be NuGet published | |
run: if [[ $(find . -maxdepth 1 -name 'ShapeSifter.*.nupkg' -printf c | wc -c) -ne "1" ]]; then exit 1; fi | |
github-tag-and-release-dry-run: | |
runs-on: ubuntu-latest | |
needs: [expected-pack] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download NuGet artifact | |
uses: actions/download-artifact@v4 | |
- name: Tag and release packages | |
env: | |
GITHUB_TOKEN: "mock-token" | |
DRY_RUN: "1" | |
run: bash .github/workflows/tag.sh | |
all-required-checks-complete: | |
needs: [check-format, build, expected-pack, analyze-code, github-tag-and-release-dry-run] | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "All required checks complete." | |
# This does not gate release, because external dependencies may be flaky. | |
markdown-link-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
nuget-publish: | |
runs-on: ubuntu-latest | |
if: ${{ !github.event.repository.fork && github.ref == 'refs/heads/main' }} | |
needs: [all-required-checks-complete] | |
environment: release | |
steps: | |
- name: Download NuGet artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: nuget-package | |
- name: Publish to NuGet | |
run: dotnet nuget push "ShapeSifter.*.nupkg" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate | |
github-tag-and-release: | |
runs-on: ubuntu-latest | |
if: ${{ !github.event.repository.fork && github.ref == 'refs/heads/main' }} | |
needs: [all-required-checks-complete] | |
environment: release | |
steps: | |
- name: Generate app token | |
id: app-token | |
uses: actions/create-github-app-token@v1 | |
with: | |
app-id: ${{ secrets.APP_ID }} | |
private-key: ${{ secrets.APP_PRIVATE_KEY }} | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ steps.app-token.outputs.token }} | |
- name: Download NuGet artifact | |
uses: actions/download-artifact@v4 | |
- name: Tag and release packages | |
env: | |
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} | |
run: bash .github/workflows/tag.sh |