Skip to content

S&P Top 50 Stocks

S&P Top 50 Stocks #38

Workflow file for this run

name: clang-format Check
on: [push, pull_request]
jobs:
formatting-check:
name: Formatting Check
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
path:
- check: 'common'
exclude: ''
- check: 'examm'
exclude: ''
- check: 'mpi'
exclude: ''
- check: 'multithreaded'
exclude: ''
- check: 'rnn'
exclude: ''
- check: 'rnn_examples'
exclude: ''
- check: 'rnn_tests'
exclude: ''
- check: 'time_series'
exclude: ''
- check: 'weights'
exclude: ''
- check: 'word_series'
exclude: ''
steps:
- uses: actions/checkout@v3
- name: Run clang-format style check for C/C++/Protobuf programs.
uses: jidicula/clang-format-action@v4.10.1
with:
clang-format-version: '15'
check-path: ${{ matrix.path['check'] }}
exclude-regex: ${{ matrix.path['exclude'] }}