-
Notifications
You must be signed in to change notification settings - Fork 15
41 lines (35 loc) · 1 KB
/
source.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
34
35
36
37
38
39
40
41
# Copyright 2020-2021
#
# This file is part of HiPACE++.
#
# Authors: Axel Huebl, MaxThevenet, Severin Diederichs
# License: BSD-3-Clause-LBNL
name: source
on: [push, pull_request]
jobs:
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Non-ASCII characters
run: .github/workflows/source/hasNonASCII
- name: TABs
run: .github/workflows/source/hasTabs
- name: End-of-Line whitespaces
run: .github/workflows/source/hasEOLwhiteSpace
- name: Proper file names in Examples
run: .github/workflows/source/wrongFileNameInExamples
# - name: Examples are tested
# run: .github/workflows/source/inputsNotTested
documentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: s-weigand/setup-conda@v1
with:
update-conda: true
conda-channels: conda-forge
- name: Install
run: conda install -c conda-forge doxygen
- name: Doxygen
run: .github/workflows/source/buildDoxygen