Enable to initialize spatial/temporal/angular chirped laser + CI test #4956
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |