use built in dotnet format #155
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: "Main workflow" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
include: | |
- os: ubuntu-latest | |
buildConfiguration: "Release" | |
- os: windows-latest | |
buildConfiguration: "TestWindows" | |
- os: macos-latest | |
buildConfiguration: "Release" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup dotnet 6.0.x | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: "6.0.x" | |
- name: Setup dotnet 7.0.x | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: "7.0.x" | |
- name: Setup dotnet 8.0.x | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: "8.0.x" | |
- name: restore | |
run: dotnet restore | |
- name: build | |
run: dotnet build --configuration ${{ matrix.buildConfiguration }} --no-restore | |
- name: test | |
run: dotnet test --configuration ${{ matrix.buildConfiguration }} --no-restore | |
check_code_format: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: run dotnet format | |
uses: dotnet format --verify-no-changes | |
check_licenses: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
targetFramework: [net6.0, net7.0, net8.0] | |
include: | |
- targetFramework: net6.0 | |
dotnetVersion: "6.0.x" | |
- targetFramework: net7.0 | |
dotnetVersion: "7.0.x" | |
- targetFramework: net8.0 | |
dotnetVersion: "8.0.x" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup dotnet ${{ matrix.dotnetVersion }} | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: ${{ matrix.dotnetVersion }} | |
- name: restore | |
run: dotnet restore -p:TargetFramework=${{ matrix.targetFramework }} | |
- name: build | |
run: dotnet publish ./src/NuGetUtility/NuGetUtility.csproj --configuration Release -o ./release -f ${{ matrix.targetFramework }} --no-restore | |
- name: check | |
run: dotnet ./release/NuGetUtility.dll -ji ./.github/workflows/assets/projectsToCheck.json -t -a ./.github/workflows/assets/allowedLicenses.json -o JsonPretty -override ./.github/workflows/assets/overwritePackageInformation.json -ignore ./.github/workflows/assets/ignorePackages.json -mapping ./.github/workflows/assets/urlToLicenseMapping.json |