This commit is contained in:
Wiesław Šoltés 2019-09-23 19:06:19 +02:00
Родитель 8829bbd1b4
Коммит b705513d9f
2 изменённых файлов: 31 добавлений и 2 удалений

29
.github/workflows/build.yml поставляемый Normal file
Просмотреть файл

@ -0,0 +1,29 @@
name: CI
on:
push:
branches:
- master
- release/*
pull_request:
branches:
- master
jobs:
build:
strategy:
matrix:
os: [ubuntu-18.04, windows-2019, macOS-10.14]
name: Build ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.0.100
- name: Build Release
run: dotnet build --configuration Release
- name: Test Release
run: dotnet test --configuration Release

Просмотреть файл

@ -1,8 +1,8 @@
{
"tools": {
"dotnet": "3.0.100-preview7-012821"
"dotnet": "3.0.100"
},
"sdk": {
"version": "3.0.100-preview7-012821"
"version": "3.0.100"
}
}