Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create unitTests.yml #175

Open
wants to merge 35 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
0874b0c
Create unitTests.yml
harika245 Aug 23, 2021
b08abb7
Update unitTests.yml
harika245 Aug 23, 2021
939f110
Update unitTests.yml
harika245 Aug 23, 2021
4435e74
Update unitTests.yml
harika245 Aug 23, 2021
ca43d5a
Update unitTests.yml
harika245 Aug 23, 2021
0dfdae4
Update unitTests.yml
harika245 Aug 23, 2021
08975d4
Update unitTests.yml
harika245 Aug 23, 2021
7f9110e
Update unitTests.yml
harika245 Aug 23, 2021
e37f7df
Update unitTests.yml
harika245 Aug 23, 2021
c575f76
Update unitTests.yml
harika245 Aug 23, 2021
3db3e50
Update unitTests.yml
harika245 Aug 23, 2021
72a2101
Update unitTests.yml
harika245 Aug 23, 2021
41b0495
Update unitTests.yml
harika245 Aug 23, 2021
f6b60e9
Update unitTests.yml
harika245 Aug 23, 2021
d60472d
Update unitTests.yml
harika245 Aug 23, 2021
f476fda
Update unitTests.yml
harika245 Aug 23, 2021
0814fbe
Update unitTests.yml
harika245 Aug 23, 2021
bb53153
Update unitTests.yml
harika245 Aug 23, 2021
93a2248
Update unitTests.yml
harika245 Aug 23, 2021
fd2c1b7
Update unitTests.yml
harika245 Aug 23, 2021
0b6f12c
Update unitTests.yml
harika245 Aug 23, 2021
25843aa
Update unitTests.yml
harika245 Aug 23, 2021
6f830c5
Update unitTests.yml
harika245 Aug 23, 2021
e15489a
Update unitTests.yml
harika245 Aug 24, 2021
96b729d
Update unitTests.yml
huzaif-plivo Oct 11, 2021
e7e348e
Update unitTests.yml
huzaif-plivo Nov 13, 2021
21930ab
Update unitTests.yml
huzaif-plivo Nov 13, 2021
f393b49
Update unitTests.yml
huzaif-plivo Nov 13, 2021
ab18d53
Update unitTests.yml
huzaif-plivo Nov 13, 2021
e8eb884
Update unitTests.yml
huzaif-plivo Nov 13, 2021
1e7da52
Update unitTests.yml
harika245 Nov 15, 2021
22027f5
Update unitTests.yml
harika245 Nov 15, 2021
d8f9671
Update unitTests.yml
harika245 Nov 15, 2021
0cdbe24
Update unitTests.yml
harika245 Nov 15, 2021
8fe7561
Update unitTests.yml
harika245 Nov 15, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/unitTests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: UnitTests

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
dotnet-version: ['2.1.x']
os: [ubuntu-18.04]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: false
- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: "Install and run tests 2.1.300"
if: ${{ matrix.dotnet-version == '2.1.x' }}
run: |
dotnet test --framework netcoreapp2.0 tests_netcore/Plivo.NetCore.Test/Plivo.NetCore.Test.csproj;
env:
DOTNETCORE: 2