Skip to content

Snake-cased parameters names in docs #206

Snake-cased parameters names in docs

Snake-cased parameters names in docs #206

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up .NET 6
uses: actions/setup-dotnet@v2
with:
dotnet-version: '6.0.x'
- name: Build
run: dotnet build
- name: Run unit tests
run: dotnet test -v n
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 14.x
- name: Install integration test dependencies
run: |
pip install pandas matplotlib pyright==1.1.338
- name: Run integration tests
run: python integration/integration_tests.py