File tree Expand file tree Collapse file tree 3 files changed +22
-478
lines changed
unicorn_binance_websocket_api Expand file tree Collapse file tree 3 files changed +22
-478
lines changed Original file line number Diff line number Diff line change @@ -117,6 +117,28 @@ jobs:
117117 LUCIT_LICENSE_TOKEN : ${{ secrets.LUCIT_LICENSE_TOKEN }}
118118 run : coverage run --source unicorn_binance_websocket_api unittest_binance_websocket_api.py
119119
120+ test_python_3_13 :
121+ runs-on : ubuntu-latest
122+ steps :
123+ - name : GitHub Checkout
124+ uses : actions/checkout@v4
125+
126+ - uses : actions/setup-python@v4
127+ with :
128+ python-version : " 3.13"
129+
130+ - name : Install dependencies
131+ run : |
132+ python -m pip install --upgrade pip
133+ pip install -r requirements.txt
134+ pip install coveralls
135+
136+ - name : Unit test
137+ env :
138+ LUCIT_API_SECRET : ${{ secrets.LUCIT_API_SECRET }}
139+ LUCIT_LICENSE_TOKEN : ${{ secrets.LUCIT_LICENSE_TOKEN }}
140+ run : coverage run --source unicorn_binance_websocket_api unittest_binance_websocket_api.py
141+
120142 - name : Upload coverage to Codecov
121143 uses : codecov/codecov-action@v3
122144 with :
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments