From 5c801a3461c74997a199a615c48cb673a45fffaf Mon Sep 17 00:00:00 2001 From: Muhammad Soban Javed Date: Wed, 8 May 2024 12:02:53 +0500 Subject: [PATCH] build: run semgrep across all python versions --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 634f3a0a01..21dc57bfe0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -76,10 +76,13 @@ jobs: semgrep: runs-on: ubuntu-latest + strategy: + matrix: + python-version: ['3.8', '3.11', '3.12'] steps: - uses: actions/checkout@v3 - run: make ci_up env: - PYTHON_VERSION: 3.8 + PYTHON_VERSION: ${{ matrix.python-version }} - name: Run semgrep Django rules run: make ci_semgrep