Skip to content

pwd

pwd #45

Workflow file for this run

---
name: App
"on":
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
path: code
- uses: actions/checkout@v3
with:
repository: "pantsbuild/pants"
ref: "huonw/20133-ghac-rate-limits"
path: pants
- run: |
code/get-pants.sh
echo "$HOME/bin" >> $GITHUB_PATH
- name: Configure pants env vars
uses: actions/github-script@v6
with:
script: |
core.exportVariable('PANTS_REMOTE_PROVIDER', 'experimental-github-actions-cache');
core.exportVariable('PANTS_REMOTE_STORE_ADDRESS', process.env.ACTIONS_CACHE_URL || '');
core.exportVariable('PANTS_REMOTE_OAUTH_BEARER_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || '');
- run: |
MODE=debug PANTS_SOURCE=../pants pants test ::
working-directory: code