forked from madgraph5/madgraph4gpu
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (30 loc) · 1.02 KB
/
manual.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Copyright (C) 2020-2023 CERN and UCLouvain.
# Licensed under the GNU Lesser General Public License (version 3 or later).
# Created by: A. Valassi (Oct 2023) for the MG5aMC CUDACPP plugin.
# Further modified by: A. Valassi (2023) for the MG5aMC CUDACPP plugin.
name: Manual test suite
on:
push:
paths:
- '.github/workflows/manual.*'
workflow_dispatch:
#inputs:
# name:
# description: 'Person to greet'
# default: 'World'
# required: true
# type: string
jobs:
codegen:
runs-on: ubuntu-latest
steps:
# See https://github.com/actions/checkout
# (NB actions/checkout@v2 is deprecated)
# (NB actions/checkout@v4 need "Allow owner and select non-owner" and "Allow actions created by github")
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: codegen_step
run: echo Current directory is $(pwd); echo execute .github/workflows/manual.sh; .github/workflows/manual.sh
#- name: Send greeting
# run: echo "Hello ${{ inputs.name }}"