Add more description and comments in the binary ranking metrics example #43
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push] | |
jobs: | |
whylogs_constraints: | |
runs-on: ubuntu-latest | |
name: validates data against whylogs constraints | |
steps: | |
# To use this repository's private action, | |
# you must check out the repository | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: expect constraints to fail step | |
uses: whylabs/whylogs_action@v1 | |
id: expect-failure | |
with: | |
constraintsfile: 'github-actions/constraints-fail.json' | |
datafile: 'python/lending_club_1000.csv' | |
expect_failure: 'True' | |
- name: expect constraints to succeed step | |
uses: whylabs/whylogs_action@v1 | |
id: expect-success | |
with: | |
constraintsfile: 'github-actions/constraints-succeed.json' | |
datafile: 'python/lending_club_1000.csv' |