-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from nickeldan/feature/handlers
- Loading branch information
Showing
131 changed files
with
12,704 additions
and
1,206 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: check-format | ||
name: Check format | ||
|
||
on: | ||
push: | ||
|
@@ -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 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.