Skip to content

⏪ Revertendo função merge_on_frequency #3

⏪ Revertendo função merge_on_frequency

⏪ Revertendo função merge_on_frequency #3

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
push:
branches: [master]
jobs:
test:
continue-on-error: true
strategy:
fail-fast: false
matrix:
os: [ubuntu, macos]
version: ["3.10", "3.11"]
runs-on: ${{ matrix.os }}-latest
steps:
- uses: fastai/workflows/nbdev-ci@master
with:
version: ${{ matrix.version }}
pre: 1
- name: test docs build
run: |
nbdev_docs
if [ -f "_docs/index.html" ]; then
echo "docs built successfully.";
else
exit 1;
fi