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