-
Notifications
You must be signed in to change notification settings - Fork 1
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 #9 from mobility-university/feature/visit_decorate…
…d_function_body visit body of decorated function
- Loading branch information
Showing
3 changed files
with
61 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: "PR" | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
|
||
jobs: | ||
Specification: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout This Repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Execute Specification | ||
run: bin/test_specification | ||
|
||
Unittest: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout This Repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Unit Test | ||
run: ./dev ./bin/unittest | ||
|
||
Format: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout This Repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Format Check | ||
run: | | ||
set -e | ||
check= ./bin/format | ||
git diff --exit-code | ||
Lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout This Repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Lint Check | ||
run: ./bin/lint |
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