forked from ECP-WarpX/WarpX
-
Notifications
You must be signed in to change notification settings - Fork 3
33 lines (28 loc) · 923 Bytes
/
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
# Copyright 2019-2020 Axel Huebl, Maxence Thevenet
#
# This file is part of WarpX.
#
# License: BSD-3-Clause-LBNL
name: source
on: [push, pull_request]
jobs:
style:
runs-on: ubuntu-20.04
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
- name: Check that the test matrix for Travis includes all tests
run: .github/workflows/source/test_travis_matrix.sh
- name: Doxygen
run: |
sudo apt-get install -y --no-install-recommends doxygen
.github/workflows/source/doxygen