Add mkdocs dependencies to readme #394
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
# 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 |