Skip to content

Commit

Permalink
Added missing job
Browse files Browse the repository at this point in the history
  • Loading branch information
gAldeia committed Oct 10, 2024
1 parent de6f631 commit 48b6c24
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,15 @@ on:
- '.github/workflows/**'

jobs:
list-algs:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v3
- id: set-matrix
run: echo "::set-output name=matrix::$(ls algorithms/ | jq -R -s -c 'split("\n")[:-1]')"

check-changes:
runs-on: ubuntu-latest
outputs:
Expand Down
1 change: 1 addition & 0 deletions experiment/methods/feat/regressor.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
functions=['+','-','*','/','^2','^3','sqrt','sin','cos','exp','log'],
otype='f'
)

# want to tune your estimator? wrap it in a sklearn CV class.

def model(est, X=None) -> str:
Expand Down

0 comments on commit 48b6c24

Please sign in to comment.