-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (33 loc) · 886 Bytes
/
Copy pathci.yml
File metadata and controls
35 lines (33 loc) · 886 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
30
31
32
33
34
35
# Credit to Andrew Craven for the original version of this file
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: dotnet build --configuration Release
- name: Test
run: dotnet test --configuration Release --no-build
template:
runs-on: ubuntu-latest
timeout-minutes: 15
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Make Local Templates
run: ./MakeLocalTemplate.sh
- name: Build
run: dotnet build LocalTemplate/NatsuApp.Desktop --configuration Release