-
-
Notifications
You must be signed in to change notification settings - Fork 106
25 lines (23 loc) · 562 Bytes
/
Copy pathCI.yml
File metadata and controls
25 lines (23 loc) · 562 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
name: ETL.NET - CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: '9.x'
- name: Install dependencies
working-directory: src
run: dotnet restore
- name: Build
working-directory: src
run: dotnet build --configuration Release --no-restore
# - name: Test
# run: dotnet run --project NetLicensingClient-demo