Skip to content

Merge pull request #17 from Ali-YousefiTelori/develop #4

Merge pull request #17 from Ali-YousefiTelori/develop

Merge pull request #17 from Ali-YousefiTelori/develop #4

name: dotnet format
on:
push:
branches: [develop]
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
3.1.x
5.0.x
6.0.x
7.0.x
- name: Run dotnet format
id: format
uses: jfversluis/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
action: "fix"
workspace: "./src/CSharp/EasyMicroservices.Security.sln"
- name: Test
run: dotnet test ./src/CSharp/EasyMicroservices.Security.sln
- name: Test to generate Code Coverage Report
working-directory: ./src/CSharp
run: |
dotnet build ./EasyMicroservices.Security.sln
dotnet tool install --global coverlet.console
coverlet EasyMicroservices.Security.Tests/bin/Debug/net6.0/EasyMicroservices.Security.Tests.dll --target "dotnet" --targetargs "test EasyMicroservices.Security.Tests/bin/Debug/net6.0/EasyMicroservices.Security.Tests.dll --no-build" -f opencover
- name: OpenCover Badge Generator
uses: danpetitt/[email protected]
with:
path-to-opencover-xml: ./src/CSharp/coverage.opencover.xml
path-to-badges: ./src/CSharp
minimum-coverage: 50
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Commit files
if: steps.format.outputs.has-changes == 'true'
uses: EndBug/[email protected]
with:
author_name: Github Actions
author_email: [email protected]
message: "chore: Automated dotnet-format update"
ref: ${{ github.head_ref }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}