Skip to content

chore(deps): update actions/upload-artifact digest to 604373d #43

chore(deps): update actions/upload-artifact digest to 604373d

chore(deps): update actions/upload-artifact digest to 604373d #43

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@692973e3d937129bcbf40652eb9f2f61becf3332 # 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@604373da6381bf24206979c74d06a550515601b9 # 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@692973e3d937129bcbf40652eb9f2f61becf3332 # 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