diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f352408..04ce325 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,21 +13,21 @@ on: # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: - test_and_doc: + clean-and-test: # The type of runner that the job will run on runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04, windows-latest, macos-latest] - python-version: [3.10, 3.11] + os: [ubuntu-latest, windows-latest, macos-latest] + python-version: ['3.10', '3.11'] steps: - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - # - name: Getting repository - # uses: actions/checkout@v3 - # - name: Install dependencies - # run: | - # python -m pip install --upgrade pip - # pip install -r requirements.txt \ No newline at end of file + - name: Getting repository + uses: actions/checkout@v3 + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt \ No newline at end of file