8000 made things consistent with nb and py · explodinggradients/ragas_experimental@00c6e64 · GitHub
[go: up one dir, main page]

Skip to content

made things consistent with nb and py #170

made things consistent with nb and py

made things consistent with nb and py #170

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: fastai/workflows/nbdev-ci@master
0