Skip to content

Commit 40d9896

Browse files
authored
Merge pull request #7 from ATikadze/feature/implement-github-actions
Feature/implement GitHub actions
2 parents be22ab1 + 89cd817 commit 40d9896

File tree

5 files changed

+37
-130
lines changed

5 files changed

+37
-130
lines changed

.github/workflow/build.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# This is a basic workflow to help you get started with Actions
2+
name: CI
3+
4+
# Controls when the action will run.
5+
on:
6+
# Triggers the workflow on push or pull request events but only for the main branch
7+
push:
8+
branches: [ main ]
9+
pull_request:
10+
branches: [ main ]
11+
12+
# Allows you to run this workflow manually from the Actions tab
13+
workflow_dispatch:
14+
15+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
16+
jobs:
17+
# This workflow contains a single job called "run-tests"
18+
run-tests:
19+
# The type of runner that the job will run on
20+
runs-on: ubuntu-latest
21+
22+
# Steps represent a sequence of tasks that will be executed as part of the job
23+
steps:
24+
- name: Install .NET 6 SDK
25+
uses: actions/setup-dotnet@v1
26+
with:
27+
dotnet-version: '6.0.201'
28+
29+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
30+
- name: Checkout Repository
31+
uses: actions/checkout@v2
32+
33+
- name: dotnet build
34+
run: dotnet build /r
35+
36+
- name: dotnet test
37+
run: dotnet test

IpfsApi.vsmdi

Lines changed: 0 additions & 6 deletions
This file was deleted.

Local.testsettings

Lines changed: 0 additions & 10 deletions
This file was deleted.

TraceAndTestImpact.testsettings

Lines changed: 0 additions & 21 deletions
This file was deleted.

appveyor.yml

Lines changed: 0 additions & 93 deletions
This file was deleted.

0 commit comments

Comments
 (0)