Skip to content

Bumping version to 3.0.0-alpha002 #159

Bumping version to 3.0.0-alpha002

Bumping version to 3.0.0-alpha002 #159

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
dotnet: [8.0.301]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Restore tools
run: dotnet tool restore
- name: Install and Run Azurite
run: npm install -g azurite &&
mkdir azurite &&
azurite --silent --location azurite --debug azurite\debug.log &
- name: Run Test
run: dotnet run -- UnitTests