Skip to content

nuget package updated #248

nuget package updated

nuget package updated #248

Workflow file for this run

name: .NET Core
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET 6
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Setup .NET 7
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
- name: Setup .NET 8
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x
- name: Install dependencies
run: cd src && dotnet restore
- name: .Net Version
run: cd src && dotnet --version
- name: Build
run: cd src && dotnet build --configuration Release --no-restore
- name: Security Code Scan
run: cd src && ./run-security-code-scan.sh
- name: Test
run: cd src && ./codeclimate_code_coverage.sh
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
#run: cd src && dotnet test --no-restore --verbosity normal