Skip to content
This repository has been archived by the owner on Jun 21, 2024. It is now read-only.

Update README.md

Update README.md #36

Workflow file for this run

name: pyokx
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Code style checks
run: |
python -m black pyokx --check
- name: Test with pytest
run: |
pytest pyokx
coverage report