Bumping version to 3.0.0-alpha002 #159
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |