Skip to content

Bump Microsoft.PowerShell.SDK from 7.0.0 to 7.0.10 #9

Bump Microsoft.PowerShell.SDK from 7.0.0 to 7.0.10

Bump Microsoft.PowerShell.SDK from 7.0.0 to 7.0.10 #9

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
runs-on: ubuntu-16.04
strategy:
matrix:
dotnet: [ '2.2.103', '3.0.100', '3.1.100' ]
name: Dotnet ${{ matrix.dotnet }} sample
steps:
- uses: actions/checkout@master
- uses: warrenbuckley/Setup-MSBuild@v1
- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
# Folder location of where vswhere.exe is located if a self-hosted agent
dotnet-version: ${{ matrix.dotnet }}
- run: dotnet build TranslitModule