-
Notifications
You must be signed in to change notification settings - Fork 0
29 lines (26 loc) · 876 Bytes
/
build.yml
File metadata and controls
29 lines (26 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# 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