From a384778396234dd8f38c3f34747876716396a342 Mon Sep 17 00:00:00 2001 From: Daniel Abraham Date: Mon, 6 Jan 2025 11:11:24 -0800 Subject: [PATCH] Apply suggestions from code review --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 482f6ff..d9f5012 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,11 +27,10 @@ jobs: run: | ruff check --output-format github . ruff format --check . - - name: Run update_projects_table.py - run: python update_projects_table.py - - name: Verify no changes to README.md + - name: Verify README.md is up to date run: | - git diff --name-only --exit-code README.md + python update_projects_table.py + git diff --name-only --exit-code README.md # (Enable this step once we have unit tests) # - name: Test with pytest # run: pytest -v