From 08c09ef2f5cb66886f5b73794ea80f106dc7f949 Mon Sep 17 00:00:00 2001 From: Aleksey Date: Tue, 3 Feb 2026 11:37:50 +0100 Subject: [PATCH] remove master & develop, kept only stable in matrix Restrict CI workflow to only the main branch for pushes and pull requests. --- .github/workflows/ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 028015b..76c41d1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,9 +2,9 @@ name: CI on: push: - branches: [ main, master, develop ] + branches: [ main ] pull_request: - branches: [ main, master, develop ] + branches: [ main ] env: CARGO_TERM_COLOR: always @@ -17,8 +17,6 @@ jobs: matrix: toolchain: - stable - - beta - - nightly steps: - uses: actions/checkout@v4 - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}