[Radio] Add missing descriptions (#1934)
[platform/core/csapi/tizenfx.git] / .github / workflows / build.yaml
1 name: Build
2
3 on:
4   pull_request:
5     branches:
6     - master
7     - API*
8
9   push:
10     branches:
11     - master
12     - API*
13     paths:
14     - 'build/**'
15     - 'internals/**'
16     - 'src/**'
17     - 'tools/**'
18
19 jobs:
20   build:
21     runs-on: ubuntu-latest
22     steps:
23     - uses: actions/checkout@v2
24
25     - name: Setup .NET Core
26       uses: actions/setup-dotnet@v1
27       with:
28         dotnet-version: 3.1.x
29
30     - uses: lots0logs/gh-action-get-changed-files@2.1.4
31       id: getChangedFiles
32       with:
33         token: ${{ secrets.GITHUB_TOKEN }}
34
35     - name: Build
36       uses: TizenAPI/tizenfx-build-actions/problem-filter@v1
37       with:
38         run: ./build.sh full /p:BuildWithAnalyzer=True
39         files: ${{ steps.getChangedFiles.outputs.all }}