From 9937a319971ad1cb33c56d0ea731164e1849a9b0 Mon Sep 17 00:00:00 2001 From: Camilo Diaz Date: Mon, 30 Oct 2023 16:05:02 -0400 Subject: [PATCH 1/4] Create python_ci.yml --- .github/workflows/python_ci.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/workflows/python_ci.yml diff --git a/.github/workflows/python_ci.yml b/.github/workflows/python_ci.yml new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/.github/workflows/python_ci.yml @@ -0,0 +1 @@ + From 046eaaa846241d6fad92b3600691b2a277c3e955 Mon Sep 17 00:00:00 2001 From: Camilo Diaz Date: Mon, 30 Oct 2023 16:21:02 -0400 Subject: [PATCH 2/4] Update python_ci.yml Init work on github workflows for testing --- .github/workflows/python_ci.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python_ci.yml b/.github/workflows/python_ci.yml index 8b137891..cc32c879 100644 --- a/.github/workflows/python_ci.yml +++ b/.github/workflows/python_ci.yml @@ -1 +1,14 @@ - +name: Run base code on different python versions +'on': pull_request +jobs: + python_run_scripts: + strategy: + matrix: + version: [3.9.10, 3.10.12, 3.11.5] + runs-on: ubuntu-latest + steps: + - name: setup python + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.version }} # install the python version needed + - uses: actions/checkout@v3 From 17cdc57f8726a09262c472e8f0d0a7b5f0ae47f0 Mon Sep 17 00:00:00 2001 From: Camilo Diaz Date: Tue, 7 Nov 2023 15:02:18 -0500 Subject: [PATCH 3/4] Update python_ci.yml removing specific minor version --- .github/workflows/python_ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python_ci.yml b/.github/workflows/python_ci.yml index cc32c879..9a9ce991 100644 --- a/.github/workflows/python_ci.yml +++ b/.github/workflows/python_ci.yml @@ -4,7 +4,7 @@ jobs: python_run_scripts: strategy: matrix: - version: [3.9.10, 3.10.12, 3.11.5] + version: [3.9, 3.10, 3.11] runs-on: ubuntu-latest steps: - name: setup python From 19a207c1cff46da70fbac49a3239f090d9ac822e Mon Sep 17 00:00:00 2001 From: Camilo Diaz Date: Tue, 7 Nov 2023 15:31:55 -0500 Subject: [PATCH 4/4] Update python_ci.yml --- .github/workflows/python_ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python_ci.yml b/.github/workflows/python_ci.yml index 9a9ce991..968c5ccc 100644 --- a/.github/workflows/python_ci.yml +++ b/.github/workflows/python_ci.yml @@ -1,5 +1,5 @@ name: Run base code on different python versions -'on': pull_request +'on': workflow_dispatch jobs: python_run_scripts: strategy: @@ -7,8 +7,9 @@ jobs: version: [3.9, 3.10, 3.11] runs-on: ubuntu-latest steps: + - uses: actions/checkout@v3 - name: setup python uses: actions/setup-python@v4 with: python-version: ${{ matrix.version }} # install the python version needed - - uses: actions/checkout@v3 + - run: python install --editable ".[dev]"