From 644a7b75f4175481d81712e05d9b11878c47575e Mon Sep 17 00:00:00 2001 From: Irfan Alibay Date: Wed, 4 Dec 2024 18:47:17 +0000 Subject: [PATCH] Bump cinnabar CI workflow (#127) * Bump cinnabar CI workflow * py3.13 not yet supported --- .github/workflows/ci.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1d38b42..b8486e3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,7 @@ name: CI on: + workflow_dispatch: push: branches: - "main" @@ -28,14 +29,14 @@ jobs: matrix: os: ['ubuntu', 'macos'] python-version: - - "3.9" - "3.10" - "3.11" + - "3.12" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - - uses: conda-incubator/setup-miniconda@v2 + - uses: conda-incubator/setup-miniconda@v3 with: auto-update-conda: true python-version: ${{ matrix.python-version }} @@ -68,7 +69,7 @@ jobs: - name: codecov if: ${{ github.repository == 'OpenFreeEnergy/cinnabar' && github.event_name != 'schedule'}} - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v5 with: token: ${{ secrets.CODECOV_TOKEN }} files: ./coverage.xml