Skip to content

chore: Improving bias mitigators and Refactor Dataset Object #174

chore: Improving bias mitigators and Refactor Dataset Object

chore: Improving bias mitigators and Refactor Dataset Object #174

name: Test and Lint feature/bugfix branches
on:
push:
branches:
- 'feature/*'
- 'bugfix/*'
paths-ignore:
- '**.md'
- '**.rst'
pull_request:
branches:
- main
paths-ignore:
- '**.md'
- '**.rst'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4.1.7
- name: Set up Python
uses: actions/setup-python@v5.2.0
with:
python-version: "3.9"
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install hatch
- name: Lint and Format
run: hatch fmt --check
- name: Run tests
run: hatch run testing:run