Skip to content

Regular Check

Regular Check #55

Workflow file for this run

name: Regular Check
on:
schedule:
#Run at 10:10 on Monday.
- cron: "10 10 * * MON"
workflow_dispatch: {}
workflow_call:
secrets:
PINECONE_API_KEY:
required: true
jobs:
run-integration-tests:
name: Integration tests
runs-on: macos-latest
permissions:
# Required to checkout the code
contents: read
# Required to put a comment into the pull-request
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup
uses: ./.github/actions/setup
- name: Run integration tests
uses: ./.github/actions/integrationTests
with:
PINECONE_API_KEY: ${{ secrets.PINECONE_API_KEY }}