Skip to content

Add mkdocs dependencies to readme #394

Add mkdocs dependencies to readme

Add mkdocs dependencies to readme #394

# This workflow tests bibat by using it to make a project, then running the new project's tests.
name: Test end to end
on:
push:
branches:
- '**'
tags-ignore:
- '**'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install bibat
run: pip install -e .
- name: Use bibat
run: copier copy -l --vcs-ref ${{ github.sha }} gh:teddygroves/bibat my_cool_project
- name: Run analysis
run: cd my_cool_project && make analysis