Skip to content

build(deps): bump actions/checkout from 4 to 5 (#4966) #18

build(deps): bump actions/checkout from 4 to 5 (#4966)

build(deps): bump actions/checkout from 4 to 5 (#4966) #18

name: "Copilot Setup Steps"
# Automatically run the setup steps when they are changed to allow for easy validation, and
# allow manual testing through the repository's "Actions" tab
on:
workflow_dispatch:
push:
branches-ignore:
- "copilot/**"
- "dependabot/**"
- "pre-commit-ci-update-config"
paths:
- .github/workflows/copilot-setup-steps.yml
pull_request:
paths:
- .github/workflows/copilot-setup-steps.yml
jobs:
# The job MUST be called `copilot-setup-steps` or it will not be picked up by Copilot.
copilot-setup-steps:
runs-on: ubuntu-latest
# Set the permissions to the lowest permissions possible needed for your steps.
# Copilot will be given its own token for its operations.
permissions:
# If you want to clone the repository as part of your setup steps, for example to install dependencies, you'll need the `contents: read` permission. If you don't clone the repository in your setup steps, Copilot will do this for you automatically after the steps complete.
contents: read
# You can define any steps you want, and they will run before the agent starts.
# If you do not check out your code, Copilot will do this for you.
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
- name: Create virtual environment
run: uv venv venv
- name: Activate virtual environment
run: echo "VIRTUAL_ENV=$PWD/venv" >> $GITHUB_ENV && echo "$PWD/venv/bin" >> $GITHUB_PATH
- name: Install base dependencies
run: uv pip install tensorflow-cpu
- name: Install PyTorch
run: uv pip install torch --index-url https://download.pytorch.org/whl/cpu
- name: Build Python package
run: uv pip install -e .[cpu,test]
- name: Install pre-commit tools
run: uv tool install pre-commit
- name: Install pre-commit hooks
run: pre-commit install --install-hooks
- name: Verify installation
run: |
dp --version
python -c "import deepmd; import deepmd.tf; print('DeePMD-kit installation verified')"