Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 2 additions & 0 deletions .github/workflows/test-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,5 @@ jobs:
- run: go mod download
- run: go build ./...
- run: go fmt ./...
- run: go vet ./...
- run: go test ./test/... -run TestOptimalPortfolioScenario
2 changes: 1 addition & 1 deletion .github/workflows/test-java17.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ jobs:
distribution: temurin
java-version: '17'
cache: maven
- run: ./mvnw compile -DskipTests
- run: ./mvnw test -q -Dtest=OptimalPortfolioScenarioTest
2 changes: 1 addition & 1 deletion .github/workflows/test-java8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ jobs:
distribution: temurin
java-version: '8'
cache: maven
- run: ./mvnw compile -DskipTests
- run: ./mvnw test -q -Dtest=OptimalPortfolioScenarioTest
2 changes: 2 additions & 0 deletions .github/workflows/test-php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,5 @@ jobs:
with:
php-version: '8.5'
- run: composer install --no-interaction --prefer-dist
- run: find src -name '*.php' -exec php -l {} +
- run: ./vendor/bin/phpunit tests/OptimalPortfolioScenarioTest.php
4 changes: 3 additions & 1 deletion .github/workflows/test-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,6 @@ jobs:
with:
python-version-file: 'python/pyproject.toml'
cache: pip
- run: pip install .
- run: pip install ".[dev]"
- run: find src -name '*.py' -exec python -m py_compile {} +
- run: python -m pytest tests/test_optimal_portfolio_scenario.py
2 changes: 2 additions & 0 deletions .github/workflows/test-ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,5 @@ jobs:
ruby-version: '3.3'
bundler-cache: true
working-directory: ruby
- run: find lib -name '*.rb' -exec ruby -c {} +
- run: bundle exec rspec spec/optimal_portfolio_scenario_spec.rb
1 change: 1 addition & 0 deletions .github/workflows/test-scala.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,4 @@ jobs:
cache: sbt
- uses: sbt/setup-sbt@af116cce31c00823d3903ce687f9cda3a4f19f1b # v1
- run: sbt compile
- run: sbt "testOnly folio.codinginterview.OptimalPortfolioScenario"
1 change: 1 addition & 0 deletions .github/workflows/test-typescript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,4 @@ jobs:
cache-dependency-path: typescript/package-lock.json
- run: npm ci
- run: npm run build
- run: npx vitest run tests/optimalPortfolioScenario.test.ts
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
.claude/settings.local.json
.serena/
.claude/settings.local.json
.claude/worktrees/
.serena/
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@

## Release

Kick the [release action](https://github.com/folio-sec/terraform-provider-zoom/actions/workflows/release.yml) manually, then release.

## Contribution

See also [CONTRIBUTING.md](CONTRIBUTING.md).
Kick the [release action](https://github.com/folio-sec/wrap-api-example/actions/workflows/release.yml) manually, then release.

### DCO Sign-Off Methods

Expand Down
Loading