Skip to content

Bump xunit from 2.8.0 to 2.8.1 in /src #76

Bump xunit from 2.8.0 to 2.8.1 in /src

Bump xunit from 2.8.0 to 2.8.1 in /src #76

Workflow file for this run

# This workflow will build BBT.StructureTools project
name: CI
on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
defaults:
run:
working-directory: src
jobs:
build:
env:
BUILD_CONFIG: "Debug"
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- name: Get Build Version
run: |
Import-Module ..\build\GetBuildVersion.psm1
Write-Host $Env:GITHUB_REF
$version = GetBuildVersion -VersionString $Env:GITHUB_REF
echo "BUILD_VERSION=$version" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append
shell: pwsh
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration $BUILD_CONFIG -p:Version=$BUILD_VERSION --no-restore
- name: Test
run: dotnet test -p:Configuration=$BUILD_CONFIG --no-restore --no-build --verbosity normal --collect:"XPlat Code Coverage" --results-directory ./coverage
- name: Codecov
uses: codecov/codecov-action@v3