Skip to content

Commit

Permalink
set up workflow (#1)
Browse files Browse the repository at this point in the history
* use latest version of os

* rename workflow

* specify python version
  • Loading branch information
iulusoy authored Dec 21, 2023
1 parent 13b113b commit 059ccc6
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
- name: Getting repository
uses: actions/checkout@v3
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt

0 comments on commit 059ccc6

Please sign in to comment.