From 2f7c656eef5603510eea741b09648d198bfb9839 Mon Sep 17 00:00:00 2001 From: Charlie Collett Date: Sat, 17 Aug 2024 12:30:31 -0700 Subject: [PATCH] Add release candidate and change trigger --- .github/workflows/ci.yml | 6 +++--- .github/workflows/code-matrix.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 81f3250..938c96f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,12 +1,12 @@ name: CI on: - pull_request: + push: branches: - - main + - github-ci jobs: - test-suite: + CI: runs-on: ubuntu-latest steps: diff --git a/.github/workflows/code-matrix.yml b/.github/workflows/code-matrix.yml index 3d06a80..632ac99 100644 --- a/.github/workflows/code-matrix.yml +++ b/.github/workflows/code-matrix.yml @@ -1,9 +1,9 @@ name: Code Matrix on: - pull_request: + push: branches: - - main + - github-ci jobs: CodeMatrix: @@ -11,7 +11,7 @@ jobs: strategy: matrix: - python-version: [3.12, 3.x] + python-version: [3.12, 3.13.0rc1, 3.x] steps: - name: Checkout code