[Build] Update workflows for pr build (#1938)
[platform/core/csapi/tizenfx.git] / .github / workflows / build-branches.yml
1 name: Build Branches
2
3 on:
4   push:
5     branches:
6     - master
7     - API*
8
9     paths:
10     - 'build/**'
11     - 'internals/**'
12     - 'src/**'
13     - 'tools/**'
14
15 jobs:
16   build:
17     runs-on: ubuntu-latest
18     steps:
19     - uses: actions/checkout@v2
20
21     - name: Setup .NET Core
22       uses: actions/setup-dotnet@v1
23       with:
24         dotnet-version: 3.1.x
25
26     - name: Build
27       run: ./build.sh full
28