ci: Bump actions/cache/restore #72
Workflow file for this run
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: Test Cally Examples | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build-providers: | |
uses: ./.github/workflows/build-providers.yaml | |
pytest: | |
needs: build-providers | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
project: ["minimal", "opinionated"] | |
env: | |
UV_SYSTEM_PYTHON: true | |
steps: | |
# Restore Provider Packages | |
- uses: actions/checkout@v4 | |
- uses: actions/cache/restore@v4 | |
id: cache | |
with: | |
path: build/ | |
key: cally-test-providers | |
# Cally Install | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
cache: pip | |
- uses: yezz123/setup-uv@v4 | |
- name: Install Provider Pacakges | |
run: uv pip install build/**/*.tar.gz | |
- name: Install Cally | |
run: uv pip install . | |
# IDP Install | |
- uses: actions/checkout@v4 | |
with: | |
repository: CallyCo-io/cally-examples | |
path: examples | |
- name: Install ${{ matrix.project }} | |
working-directory: examples/${{ matrix.project }} | |
run: uv pip install .[test] | |
# Run Tests | |
- name: Run Pytest for ${{ matrix.project }} | |
working-directory: examples/${{ matrix.project }} | |
run: pytest -v |