Skip to content

Update for LocalStack.NET: .NET 8 support, new AWS services and more #48

Update for LocalStack.NET: .NET 8 support, new AWS services and more

Update for LocalStack.NET: .NET 8 support, new AWS services and more #48

Workflow file for this run

name: build-windows
on:
push:
paths-ignore:
- "**.md"
- LICENSE
branches:
- "master"
pull_request:
paths-ignore:
- "**.md"
- LICENSE
branches:
- master
jobs:
build-and-test:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Testspace
uses: testspace-com/setup-testspace@v1
with:
domain: ${{github.repository_owner}}
- name: Install .NET 6
uses: actions/setup-dotnet@v1
with:
dotnet-version: "6.0.x"
- name: Install .NET 8
uses: actions/setup-dotnet@v1
with:
dotnet-version: "8.0.x"
- name: Build
run: .\build.ps1 --target build
- name: Run Tests
run: .\build.ps1 --target tests --exclusive
- name: Push result to Testspace server
run: |
testspace [windows]**/*.trx
if: always()