Skip to content

Bump version of SF.AspNetCore.Internal (#128) #170

Bump version of SF.AspNetCore.Internal (#128)

Bump version of SF.AspNetCore.Internal (#128) #170

Workflow file for this run

name: build
on:
push:
branches:
- develop
- 'release_*'
pull_request:
branches:
- develop
- 'release_*'
jobs:
build:
name: Build Test
runs-on: windows-latest
# info about windows-latest https://github.com/actions/runner-images
env:
DROP_DIR: drop
TEST_RESULT_DIR: drop\testresults
steps:
- uses: actions/checkout@v1
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0.x'
- name: Build Everything
shell: powershell
run: dotnet build buildAll.proj
- name: Run Tests
run: dotnet test code.sln --configuration release --nologo --settings test\unittests\default.runsettings --results-directory ${{ env.TEST_RESULT_DIR }} --logger trx
- name: upload artifacts
uses: actions/upload-artifact@master
with:
name: release_drop
path: ${{ env.DROP_DIR }}