mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-05 23:06:10 +00:00
29 lines
501 B
YAML
29 lines
501 B
YAML
name: CI Build
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- "master"
|
|
push:
|
|
branches:
|
|
- "master"
|
|
|
|
jobs:
|
|
build:
|
|
|
|
strategy:
|
|
matrix:
|
|
platform: [ubuntu-latest, macos-latest]
|
|
|
|
runs-on: ${{ matrix.platform }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Setup .NET Core
|
|
uses: actions/setup-dotnet@v1.4.0
|
|
with:
|
|
dotnet-version: 3.1.101
|
|
- name: Build with dotnet
|
|
run: ./build.sh --linksources=true --verbosity=verbose
|
|
shell: bash
|