From 6394784353004254eb9fe10bf8ff0f9e0e718087 Mon Sep 17 00:00:00 2001 From: Daniel Gospodinow Date: Fri, 26 Jan 2024 19:02:44 +0000 Subject: [PATCH] Update README --- README.md | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 6f4fed8..ccee61a 100644 --- a/README.md +++ b/README.md @@ -22,21 +22,20 @@ In short, go to your repository's `Settings` tab and add the variables under `Se Add the following `deploy` job in your Action. ``` yaml -nil-check: +static-analysis: # Assuming the `build` job builds the project, # we define a dependency on it. needs: build runs-on: ubuntu-latest steps: - - name: Scan using nilaway + - name: Checkout + uses: actions/checkout@v3 + + - name: Nil panic checks uses: qbaware/nilaway-action@v0 with: - package-to-scan: "./..." + package-to-scan: ./... ``` ### That's It 🎉 - -### Sample Workflow View - -![Sample workflow](/resources/sample-workflow.png)