From 5e332b9ab7a60de08d57f9423185d61f3b7902c3 Mon Sep 17 00:00:00 2001 From: mshafer-NI <23644905+mshafer-NI@users.noreply.github.com> Date: Fri, 14 Nov 2025 15:50:00 -0600 Subject: [PATCH] Add checkout step to GitHub Actions workflow The list of steps in the example for analyze-project skips repo checkout (which is required). Updating this list makes it easier for users to just copy/paste the example usage. --- analyze-project/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/analyze-project/README.md b/analyze-project/README.md index cf19204..91655b8 100644 --- a/analyze-project/README.md +++ b/analyze-project/README.md @@ -16,6 +16,8 @@ This action requires Poetry, so you must call `ni/python-actions/setup-python` a ```yaml steps: +- name: Check out repo + uses: actions/checkout@v0 - uses: ni/python-actions/setup-python@v0 - uses: ni/python-actions/setup-poetry@v0 - uses: ni/python-actions/analyze-project@v0