Skip to content

Commit

Permalink
CI: break workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
SamDanielThangarajan committed Feb 26, 2024
1 parent f407c0e commit 0cbe9eb
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@

name: Python package

on: [push]
on:
workflow_call:

jobs:
build:
Expand Down
30 changes: 30 additions & 0 deletions .github/workflows/wf-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

name: Python package

on: [push]

jobs:
package:
uses: ./.github/workflows/jobs-package.yml
deploy:
name: Deploy
needs: package
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload entire repository
path: '.'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
14 changes: 8 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Welcome to nasdaq-protocols's documentation!
============================================
Nasdaq Protocols Python Library
===============================

.. toctree::
:maxdepth: 1
Expand All @@ -15,11 +15,13 @@ Introduction
------------
This library provides a Python implementation of the Nasdaq protocols and FIX protocol.

Following protocols are planned to be implemented in this repository:
Currently, the library supports the following protocols:
1. SOUP
2. OUCH
3. ITCH
4. FIX

Following protocols are planned to be implemented in this repository:
1. OUCH
2. ITCH
3. FIX


Indices and tables
Expand Down

0 comments on commit 0cbe9eb

Please sign in to comment.