Falln87/computer-use-agent
0
1name: 'Setup UV'2description: 'Install UV and set up the virtual environment'3 4runs:5 using: composite6 steps:7 - name: Install uv8 shell: bash9 run: |10 curl -LsSf https://astral.sh/uv/install.sh | sh11 echo "$HOME/.cargo/bin" >> $GITHUB_PATH12 13 - name: Install dependencies14 shell: bash15 run: |16 make sync17 