Skip to content

updated README.md

updated README.md #200

Workflow file for this run

# 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
if: github.event.pull_request.draft == false
steps:
- uses: actions/checkout@v3
- 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 CI includes all tests
run: .github/workflows/source/test_ci_matrix.sh
- name: Doxygen
run: |
sudo apt-get install -y --no-install-recommends doxygen
.github/workflows/source/doxygen