2023-08-28 05:50:22 +00:00
|
|
|
name: C++
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2023-08-28 09:59:39 +00:00
|
|
|
branches: [master]
|
2023-08-28 05:50:22 +00:00
|
|
|
pull_request:
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
format:
|
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
2023-10-01 12:37:09 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-08-28 05:50:22 +00:00
|
|
|
|
|
|
|
- name: Install dos2unix
|
|
|
|
run: sudo apt-get install -y dos2unix
|
|
|
|
|
|
|
|
- name: Check formatting
|
|
|
|
run: ./format.sh && git diff --exit-code
|