Skip to content

Database versioning and migration #4

Database versioning and migration

Database versioning and migration #4

Workflow file for this run

name: Migration Check
# Cancel workflow if there is a new change to the branch.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
on:
workflow_dispatch:
merge_group:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build-ubuntu:
name: Build Ubuntu
runs-on: ubuntu-latest
steps:
- name: Checkout Sources
uses: actions/checkout@v3
- name: Setup sccache
uses: mozilla-actions/[email protected]
timeout-minutes: ${{ fromJSON(env.CACHE_TIMEOUT_MINUTES) }}
continue-on-error: true
- name: Install Apt Dependencies
run: |
sudo make install-deps
migration-check:
needs:
- build-ubuntu
name: Forest migration checks
runs-on: ubuntu-latest
steps:
- name: migration check
run: ./scripts/migration_check.sh