Skip to content

Stop committing lock files; add weekly CI safety net #154

Stop committing lock files; add weekly CI safety net

Stop committing lock files; add weekly CI safety net #154

Workflow file for this run

name: daily_planner
on:
schedule:
- cron: "30 6 * * 1" # weekly build to catch dependency drift (lock files are gitignored)
push:
branches:
- master
pull_request:
paths:
- motoko/daily_planner/**
- rust/daily_planner/**
- .github/workflows/daily_planner.yml
- .github/workflows/_run-example.yml
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
motoko-daily_planner:
uses: ./.github/workflows/_run-example.yml
with:
language: motoko
working-directory: motoko/daily_planner
run: |
icp network start -d
icp deploy
bash test.sh
rust-daily_planner:
uses: ./.github/workflows/_run-example.yml
with:
language: rust
working-directory: rust/daily_planner
run: |
icp network start -d
icp deploy
bash test.sh