Skip to content

Commit

Permalink
Merge pull request #3 from nickeldan/feature/handlers
Browse files Browse the repository at this point in the history
  • Loading branch information
nickeldan authored Mar 25, 2023
2 parents f21a112 + 9a67384 commit 45596a2
Show file tree
Hide file tree
Showing 131 changed files with 12,704 additions and 1,206 deletions.
2 changes: 1 addition & 1 deletion .clang-format
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ BraceWrapping:
IndentBraces: false
BreakBeforeBraces: Custom
BreakBeforeTernaryOperators: false
ColumnLimit: 109
ColumnLimit: 110
DerivePointerAlignment: false
IncludeBlocks: Preserve
IndentCaseLabels: false
Expand Down
7 changes: 1 addition & 6 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: check-format
name: Check format

on:
push:
Expand All @@ -16,8 +16,3 @@ jobs:
- uses: jidicula/[email protected]
with:
clang-format-version: '14'
- uses: actions/setup-python@v1
with:
python-version: 3.7
- run: pip install black
- run: black --check -l 110 tests
38 changes: 0 additions & 38 deletions .github/workflows/make_and_test.yml

This file was deleted.

17 changes: 17 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Run tests

on:
push:
branches:
- "**"

workflow_dispatch:

jobs:
test:
runs-on: ubuntu-latest
container:
image: nickeldan/scrutiny:0.4.0
steps:
- uses: actions/checkout@v3
- run: make tests
Loading

0 comments on commit 45596a2

Please sign in to comment.