issue914-tolcache #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: issue914-toolcache | |
on: | |
workflow_dispatch: | |
jobs: | |
test-python: | |
name: Test Python pip install | |
runs-on: self-hosted | |
env: | |
RUNNER_TOOL_CACHE: ${{ github.workspace }}/_work/_tool | |
AGENT_TOOLSDIRECTORY: ${{ github.workspace }}/_work/_tool | |
steps: | |
- name: Github Actions Context Information | |
uses: SiemaApplications-attic/vossloh-gh-actions/debug/show-github-context@v7 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Show environment variables | |
run: env | |
- name: Python package install | |
run: pip install PyGObject |