From 0956709702d0b6e8433719e04ebd14ff5b991054 Mon Sep 17 00:00:00 2001 From: Awais Qureshi Date: Sat, 22 Jul 2023 18:53:15 +0500 Subject: [PATCH] chore: fixing ci --- .github/workflows/ci.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7e78e8f7..8daa4421 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: - uses: actions/setup-node@v2-beta with: node-version: ${{ matrix.node }} - - name: run tests + - name: Install Django ${{ matrix.django-version }} run: | sudo apt install gettext python -m pip install "django~=${{ matrix.django-version }}.0" @@ -32,3 +32,12 @@ jobs: make build make test make validate_translations + - name: run tests + run: | + sudo apt install gettext + python -m pip install "django==3.2.20" + pip install -r requirements/test.txt + make npm_requirements + make build + make test + make validate_translations