Skip to content

feat: don't use github actions cache; we use pull through cache #875

feat: don't use github actions cache; we use pull through cache

feat: don't use github actions cache; we use pull through cache #875

on:
pull_request: {}
name: Test Install Happy
jobs:
test-install-happy-latest:
runs-on: [ARM64]
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/install-happy
- run: happy version
- run: gh auth status
test-install-happy-pinned:
runs-on: [ARM64]
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/install-happy
with:
happy_version: "0.81.0"
- run: happy version
- run: gh auth status
test-install-happy-x64:
runs-on: [X64]
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/install-happy
- run: happy version
- run: gh auth status