Skip to content

print log and add daily schedule for CI #612

print log and add daily schedule for CI

print log and add daily schedule for CI #612

Workflow file for this run

name: CI
permissions:
id-token: write
contents: read
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
schedule:
- cron: "0 23 * * *"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run Lint
run: make lint
unit:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Dependencies
env:
GH_TOKEN: ${{ github.token }}
run: ./scripts/tools/install-deps.sh
- name: Run Unit Tests
run: npm run test
e2e:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Dependencies
env:
GH_TOKEN: ${{ github.token }}
run: ./scripts/tools/install-deps.sh
- name: Build DevContainer
uses: devcontainers/[email protected]
env:
GH_TOKEN: ${{ github.token }}
with:
push: never
configFile: .devcontainer/devcontainer.json
runCmd: |
scripts/set_python_env.sh && pip install -r requirements.txt
make demo
- name: Print CCF logs
run: cat workspace/sandbox_0/out
system:
secrets: inherit # pragma: allowlist secret
uses: ./.github/workflows/system-tests.yml