Skip to content

Commit a969e5b

Browse files
authored
Ci testing (#46)
* renamed a few test files. tested the dropna function * indexer tests * subtraction * Subtract, divide, and equals * DataFrame operators - equality * added pop test * Sample test added. Added support for sample with replace. * tried just moving them?
1 parent cdb1c04 commit a969e5b

File tree

3 files changed

+84
-0
lines changed

3 files changed

+84
-0
lines changed

.github/workflows/mac-ci-pipeline.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
pool:
2+
vmImage: 'macOS-12'
3+
4+
variables:
5+
solution: '**/*.sln'
6+
buildPlatform: 'Any CPU'
7+
buildConfiguration: 'Release'
8+
9+
steps:
10+
- task: NuGetToolInstaller@1
11+
12+
- task: NuGetCommand@2
13+
inputs:
14+
restoreSolution: '$(solution)'
15+
16+
- task: DotNetCoreCLI@2
17+
inputs:
18+
command: build
19+
projects: '$(solution)'
20+
configuration: '$(buildConfiguration)'
21+
arguments: '--configuration $(buildConfiguration) -p:Platform="$(buildPlatform)"'
22+
23+
- task: DotNetCoreCLI@2
24+
inputs:
25+
command: test
26+
projects: '$(solution)'
27+
configuration: '$(buildConfiguration)'
28+
arguments: '--configuration $(buildConfiguration) -p:Platform="$(buildPlatform)"'
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
pool:
2+
vmImage: 'ubuntu-22.04'
3+
4+
variables:
5+
solution: '**/*.sln'
6+
buildPlatform: 'Any CPU'
7+
buildConfiguration: 'Release'
8+
9+
steps:
10+
- task: NuGetToolInstaller@1
11+
12+
- task: NuGetCommand@2
13+
inputs:
14+
restoreSolution: '$(solution)'
15+
16+
- task: DotNetCoreCLI@2
17+
inputs:
18+
command: build
19+
projects: '$(solution)'
20+
configuration: '$(buildConfiguration)'
21+
arguments: '--configuration $(buildConfiguration) -p:Platform="$(buildPlatform)"'
22+
23+
- task: DotNetCoreCLI@2
24+
inputs:
25+
command: test
26+
projects: '$(solution)'
27+
configuration: '$(buildConfiguration)'
28+
arguments: '--configuration $(buildConfiguration) -p:Platform="$(buildPlatform)"'

.github/workflows/win-ci-pipeline.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
pool:
2+
vmImage: 'windows-2022'
3+
4+
variables:
5+
solution: '**/*.sln'
6+
buildPlatform: 'Any CPU'
7+
buildConfiguration: 'Release'
8+
9+
steps:
10+
- task: NuGetToolInstaller@1
11+
12+
- task: NuGetCommand@2
13+
inputs:
14+
restoreSolution: '$(solution)'
15+
16+
- task: DotNetCoreCLI@2
17+
inputs:
18+
command: build
19+
projects: '$(solution)'
20+
configuration: '$(buildConfiguration)'
21+
arguments: '--configuration $(buildConfiguration) -p:Platform="$(buildPlatform)"'
22+
23+
- task: DotNetCoreCLI@2
24+
inputs:
25+
command: test
26+
projects: '$(solution)'
27+
configuration: '$(buildConfiguration)'
28+
arguments: '--configuration $(buildConfiguration) -p:Platform="$(buildPlatform)"'

0 commit comments

Comments
 (0)