remove master & develop, kept only stable in matrix

Restrict CI workflow to only the main branch for pushes and pull requests.
This commit is contained in:
Aleksey 2026-02-03 11:37:50 +01:00 committed by GitHub
parent 4c411a20cc
commit 08c09ef2f5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 }}