Skip to content

Commit

Permalink
[#28] Add GitHub action 'build'
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSomeMan committed Oct 17, 2023
1 parent 5304b02 commit d7b253f
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Build

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Check out code
uses: actions/checkout@v3 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it

- name: Run build.sh
run: build.sh
2 changes: 1 addition & 1 deletion .github/workflows/code-style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
sudo apt-get install -y clang-format-14
- name: Run clang-format
run: scripts/clang_format_all.sh
run: clang_format_all.sh

- name: Check formatting
run: git diff --exit-code --diff-filter=d --color

0 comments on commit d7b253f

Please sign in to comment.