mirror of
https://github.com/Cian-H/invenio-theme-iform.git
synced 2025-12-22 20:51:58 +00:00
29 lines
649 B
YAML
29 lines
649 B
YAML
# -*- coding: utf-8 -*-
|
|
#
|
|
# Copyright (C) 2020-2024 Graz University of Technology.
|
|
#
|
|
# invenio-theme-iform is free software; you can redistribute it and/or
|
|
# modify it under the terms of the MIT License; see LICENSE file for more
|
|
# details.
|
|
|
|
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: master
|
|
pull_request:
|
|
branches: master
|
|
schedule:
|
|
# * is a special character in YAML so you have to quote this string
|
|
- cron: '0 3 * * 6'
|
|
workflow_dispatch:
|
|
inputs:
|
|
reason:
|
|
description: 'Reason'
|
|
required: false
|
|
default: 'Manual trigger'
|
|
|
|
jobs:
|
|
tests:
|
|
uses: tu-graz-library/.github/.github/workflows/tests.yml@main
|