Skip to content

Commit

Permalink
Fix typo in test-build action and add .yamllint file
Browse files Browse the repository at this point in the history
  • Loading branch information
yut23 committed Dec 3, 2023
1 parent 62d5d1d commit ffd46f8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ jobs:
steps:
- name: Build targets
run: |
cd ${{ matrix.dir }}
make -j2 CXX=${{ matrix.compiler }} DISABLE_BEAR=TRUE build/release/${{ matrix.target }} build/debug/${{ matrix.target }}
cd ${{ matrix.dir }}
make -j2 CXX=${{ matrix.compiler }} DISABLE_BEAR=TRUE build/release/${{ matrix.target }} build/debug/${{ matrix.target }}
10 changes: 10 additions & 0 deletions .yamllint
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---

extends: default

rules:
document-start: disable
truthy: disable
line-length: disable

# vim: ft=yaml

0 comments on commit ffd46f8

Please sign in to comment.