fix #100 - change RUNNER_TOOL_CACHE to /opt/hostedtoolcache (#103)

This commit is contained in:
Casey Lee
2020-02-25 08:52:05 -08:00
committed by GitHub
parent ead2ab4d69
commit 9dd2428546
3 changed files with 19 additions and 2 deletions

17
pkg/runner/testdata/python/main.yml vendored Normal file
View File

@@ -0,0 +1,17 @@
name: CI
on: [push]
jobs:
linter:
name: "Linting Python Code"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1.1.1
with:
python-version: 3.7
- run: python -c "import sys; print(sys.version)"