Skip to content

CI

CI #245

Workflow file for this run

name: CI
on:
push:
schedule:
- cron: '0 0 * * *' # daily at 00:00
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Install deps
run: make install-deps
- name: Run CI
run: make ci