diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7e4751636..59e3e2e2c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,9 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 - name: Create virtual environment - run: make venv + run: | + python -m venv venv + venv/bin/pip3 install -r requirements.txt - name: Syntax check run: | . venv/bin/activate @@ -26,7 +28,9 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 - name: Create virtual environment - run: make venv + run: | + python -m venv venv + venv/bin/pip3 install -r requirements.txt - name: Build documentation run: | . venv/bin/activate