Skip to content

Commit

Permalink
Merge pull request #28 from IvanildoBarauna/devel
Browse files Browse the repository at this point in the history
feat: add query to get average ASK and BID by day
  • Loading branch information
IvanildoBarauna authored May 10, 2024
2 parents 70dcf10 + f497960 commit 3a72c86
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
19 changes: 12 additions & 7 deletions .github/workflows/docker-image.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
name: Build Docker Image CI

on:
workflow_run:
workflows: ["Tests CI"]
types:
- completed
pull_request:
branches: [ main ]
branches:
- main
paths-ignore:
- '**/README.md'
- '**/CONTRIBUTING.md'
- '**/CODE_OF_CONDUCT.md'
- '.github/**'
- 'docs/**'
- '**/.editorconfig'
- '**/.gitignore'
- '**/LICENSE'
- '**/CREDITS'

jobs:
build:

runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/checkout@v2

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pages_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:

- name: Convert notebook to HTML
run: |
jupyter nbconvert --to html ./notebooks/data_explorer.ipynb --output docs/index.html
jupyter nbconvert --to html ./notebooks/data_explorer.ipynb --output ./docs/index.html
- name: Setup Pages
uses: actions/configure-pages@v5
Expand Down
1 change: 1 addition & 0 deletions notebooks/data_explorer.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -728,6 +728,7 @@
"\n",
"import matplotlib.pyplot as plt\n",
"\n",
"## Query to get the average ASK and BID by day\n",
"query = \"\"\"\n",
" SELECT \n",
" create_date DT_REF\n",
Expand Down

0 comments on commit 3a72c86

Please sign in to comment.