From 0e5cd1f481b7ecd19d0a168cbb930b5c0bcf56dd Mon Sep 17 00:00:00 2001 From: Artem Shumeiko <53895552+artemonsh@users.noreply.github.com> Date: Tue, 23 May 2023 00:32:02 +0300 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 632a0fd..431b8a9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,16 +6,14 @@ jobs: build: runs-on: ubuntu-latest - strategy: - matrix: - python-version: ["3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} + - name: Set up Python 3.9 uses: actions/setup-python@v4 with: - python-version: ${{ matrix.python-version }} + # Semantic version range syntax or exact version of a Python version + python-version: '3.9' - name: Install dependencies run: | python -m pip install --upgrade pip