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 931ec93
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 7 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# 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/python-package.yml
upload-doc:
needs: package
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/github_pages' }}
with:
publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: _build/
force_orphan: true
3 changes: 2 additions & 1 deletion .github/workflows/python-package.yml
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
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 931ec93

Please sign in to comment.