Skip to content

feat(doc): add light/dark mode to documentation #336

feat(doc): add light/dark mode to documentation

feat(doc): add light/dark mode to documentation #336

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: [3.x]
steps:
- name: Git clone
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: prefix-dev/[email protected]
with:
run-install: true
- name: Post-install dependencies
run: pixi run postinstall
- name: Test with pytest
run: pixi run test
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
env_vars: OS,PYTHON
fail_ci_if_error: true
verbose: true