Skip to content

chore(deps): update actions/upload-artifact digest to b4b15b8 (#51) #49

chore(deps): update actions/upload-artifact digest to b4b15b8 (#51)

chore(deps): update actions/upload-artifact digest to b4b15b8 (#51) #49

Workflow file for this run

---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
- uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install -e .[docs]
sphinx-build -b html docs/ docs/_build
- name: Upload artifact
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
with:
name: docs
path: docs/_build/
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
- uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5
with:
python-version: ${{ matrix.python-version }}
- name: Install enzyme
run: |
python -m pip install -U pip
python -m pip install -e ".[test]"
- name: Test
run: pytest