Skip to content

Bump Microsoft.Rest.ClientRuntime in /FSharpLu.Azure #54

Bump Microsoft.Rest.ClientRuntime in /FSharpLu.Azure

Bump Microsoft.Rest.ClientRuntime in /FSharpLu.Azure #54

Workflow file for this run

name: GitHub Action CI
on:
workflow_dispatch:
push:
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Infer version from release notes
run: |
$version = & Scripts/Get-Version.ps1
echo "NUGET_PACKAGE_VERSION=$version" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.301
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore --no-incremental
- name: Test
run: dotnet test --no-restore --verbosity normal --no-build --configuration Release