Fix bugs without heFFTe #100
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 2019-2020 Axel Huebl, Maxence Thevenet | |
# | |
# This file is part of WarpX. | |
# | |
# License: BSD-3-Clause-LBNL | |
name: 📜 Source | |
on: [push, pull_request] | |
concurrency: | |
group: ${{ github.ref }}-${{ github.head_ref }}-source | |
cancel-in-progress: true | |
jobs: | |
style: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- 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: Check test input files | |
run: .github/workflows/source/check_inputs.py | |
- name: Doxygen | |
run: | | |
sudo apt-get install -y --no-install-recommends doxygen | |
.github/workflows/source/doxygen |