Skip to content

add test infrastructure #1

add test infrastructure

add test infrastructure #1

Workflow file for this run

name: test
on:
pull_request:
jobs:
detect-usage:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -el {0}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup environment
uses: ./.github/actions/setup-test-env
- name: Restore test cache
id: cache
uses: actions/cache@v4
with:
path: ./.bokeh_fastapi_cache
key: test-${{ runner.os }}-${{ runner.arch }}|${{}}-${{}}

Check failure on line 25 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / test

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 25, Col: 16): An expression was expected
restore-keys: test-${{ runner.os }}-${{ runner.arch }}
- name: Create test cache
if: steps.cache.outputs.cache-hit != 'true'
working-directory: ./tests/bokeh
run: pytest || true