Skip to content

Commit

Permalink
[WIP] Add verification action
Browse files Browse the repository at this point in the history
  • Loading branch information
vabold committed Feb 5, 2024
1 parent 8849d26 commit 35f1d6a
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,19 @@ jobs:
run: |
dirs="include source"
find $dirs -regex '.*\.\(c\|h\|cc\|hh\)' | xargs clang-format-15 --dry-run -Werror
verify:
name: Verify
runs-on: ubuntu-latest
needs: build
steps:
- name: Download artifact
uses: actions/download-artifact@v3
with:
name: Kinoko
- name: Download dependencies
run: wget ${{ secrets.RUNTIME_DEPENDENCIES }} > /dev/null
- name: Extract dependencies
run: unzip Kinoko.zip
- name: Run Kinoko
run: chmod u+x ./kinoko && ./kinoko

0 comments on commit 35f1d6a

Please sign in to comment.