Skip to content

chore(deps): update actions/setup-python digest to 0b93645 (#53) #53

chore(deps): update actions/setup-python digest to 0b93645 (#53)

chore(deps): update actions/setup-python digest to 0b93645 (#53) #53

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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # 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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # 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