Skip to content

Commit

Permalink
Add action to install dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
yuntongzhang committed Aug 19, 2024
1 parent 45cd9de commit 66e748c
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: 'AutoCodeRover'
description: 'Install AutoCodeRover dependencies.'

runs:

using: 'composite'
steps:
- uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'

- name: Install AutoCodeRover deps
run: pip install -r ${{ github.action_path }}/requirements.txt && echo "pip install ok"
shell: bash

0 comments on commit 66e748c

Please sign in to comment.