Skip to content

#170 add net8 and net9 as multiple target networks (#171) #1

#170 add net8 and net9 as multiple target networks (#171)

#170 add net8 and net9 as multiple target networks (#171) #1

Workflow file for this run

name: Build & Test
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET 8.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Setup .NET 9.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0.x'
- name: Restore dependencies
run: dotnet restore -s ${MYGET_FEED} -s https://api.nuget.org/v3/index.json
env:
MYGET_FEED: ${{ secrets.MYGET_FEED }}
- name: Build
run: dotnet build --no-restore /p:ContinuousIntegrationBuild=true
- name: Test
run: dotnet test --no-build --verbosity normal /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
- name: Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
#- name: Run FOSSA scan
# uses: fossa-contrib/fossa-action@v1
# with:
# fossa-api-key: ${{ secrets.FOSSA_API_KEY }}