Skip to content

Bump Microsoft.NET.Test.Sdk from 17.7.1 to 17.7.2 in /coster #188

Bump Microsoft.NET.Test.Sdk from 17.7.1 to 17.7.2 in /coster

Bump Microsoft.NET.Test.Sdk from 17.7.1 to 17.7.2 in /coster #188

Workflow file for this run

name: Coster build
on:
push:
branches:
- main
paths:
- 'coster/**'
- .github/workflows/coster.yml
pull_request:
branches:
- main
paths:
- 'coster/**'
- .github/workflows/coster.yml
env:
BUILD_CONFIGURATION: Release
jobs:
build:
name: Coster Build
runs-on: ubuntu-20.04
defaults:
run:
working-directory: coster
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Build
run: ./build.sh
- name: Upload test results
uses: actions/upload-artifact@v3
if: always()
with:
name: test-results
path: 'coster/artifacts/test-results/**/*.html'
if-no-files-found: error
- name: Upload coverage report
uses: actions/upload-artifact@v3
if: always()
with:
name: code-coverage
path: 'coster/artifacts/coverage-report'
if-no-files-found: error