generated from tweag/project
-
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 remote-tracking branch 'origin/main' into fixup-minor-issues
- Loading branch information
Showing
2 changed files
with
8 additions
and
9 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 |
---|---|---|
|
@@ -42,20 +42,21 @@ This action will run `fawltydeps` in the project directory for a Python codebase | |
|
||
## Example usage | ||
|
||
You need to use a `checkout` action before | ||
You need to use a `checkout` action before the FawltyDeps action. | ||
|
||
Simple usage: | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: tweag/[email protected].2 | ||
- uses: tweag/[email protected].3 | ||
|
||
More advanced example with extra command line options: | ||
More advanced example with customized command line options: | ||
|
||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
- name: fawltydeps lint | ||
uses: tweag/[email protected].2 | ||
uses: tweag/[email protected].3 | ||
with: | ||
options: --list-sources --list-imports --list-deps --detailed | ||
|
||
|