-
Notifications
You must be signed in to change notification settings - Fork 207
Tests .NET #1221
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
Tests .NET #1221
Changes from 24 commits
0a48f7a
b44f0b1
4c6b9f7
b071cbc
e9586d2
5ad9a4b
953600d
d9f6d71
cc2cd62
ebbad72
ff2545a
faad585
995ba87
10993e5
76ce99c
8dfc5c5
a71ae71
9725af6
e9cb8f7
be1bc73
11427a9
8bfe93e
f0a6764
5ca706c
c737d93
e61b504
474e0a1
b4ec1c9
c243bca
a91f388
e7d923a
31d1b9a
33ced27
2950f87
488fe88
8fe9521
dfab06f
eab63b9
be2c5a5
70b540d
e8824d1
8036595
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -197,3 +197,45 @@ jobs: | |
| exit 1 | ||
| ;; | ||
| esac | ||
|
|
||
| - name: Run Tests | ||
| working-directory: examples/${{ matrix.sdk }} | ||
| run: | | ||
| case "${{ matrix.sdk }}" in | ||
| web|node|cli|react-native) | ||
| npm test || echo "No tests available" | ||
| ;; | ||
| flutter) | ||
| flutter test || echo "No tests available" | ||
| ;; | ||
| apple|swift) | ||
| swift test || echo "No tests available" | ||
| ;; | ||
| android) | ||
| ./gradlew test || echo "No tests available" | ||
| ;; | ||
| kotlin) | ||
| ./gradlew test || echo "No tests available" | ||
| ;; | ||
| php) | ||
| vendor/bin/phpunit || echo "No tests available" | ||
| ;; | ||
| python) | ||
| python -m pytest || echo "No tests available" | ||
| ;; | ||
| ruby) | ||
| bundle exec rake test || bundle exec rspec || echo "No tests available" | ||
| ;; | ||
| dart) | ||
| dart test || echo "No tests available" | ||
| ;; | ||
| go) | ||
| go test ./... || echo "No tests available" | ||
| ;; | ||
| dotnet) | ||
|
Comment on lines
+256
to
+257
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| dotnet test || echo "No tests available" | ||
| ;; | ||
| *) | ||
| echo "No tests for SDK: ${{ matrix.sdk }}" | ||
| ;; | ||
| esac | ||
|
Fellmonkey marked this conversation as resolved.
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| # Test results | ||
| TestResults/ | ||
| *.trx | ||
| *.coverage | ||
| *.coveragexml | ||
|
|
||
| # Coverage reports | ||
| coverage/ | ||
| coverage.json | ||
| coverage.opencover.xml | ||
| lcov.info | ||
|
|
||
| # Build outputs | ||
| bin/ | ||
| obj/ | ||
| *.user | ||
| *.suo | ||
|
|
||
| # Rider | ||
| .idea/ | ||
|
|
||
| # Visual Studio | ||
| .vs/ |
Uh oh!
There was an error while loading. Please reload this page.