# SPDX-License-Identifier: MPL-2.0
# Mustfile - mandatory checks
# See: https://github.com/hyperpolymath/mustfile

version: 1

checks:
  - name: security
    run: just lint
  - name: tests
    run: just test
  - name: format
    run: just fmt

