feat: setup current stable toolchain

This commit is contained in:
Daniil Polyakov 2025-11-25 23:36:18 +03:00
parent 1910d68430
commit 72d20a3546
2 changed files with 4 additions and 8 deletions

View File

@ -1,7 +1,7 @@
on: on:
push: push:
branches: branches:
- master - main
paths-ignore: paths-ignore:
- "**.md" - "**.md"
- "!.github/workflows/*.yml" - "!.github/workflows/*.yml"
@ -21,13 +21,8 @@ jobs:
name: ubuntu-latest-pipeline name: ubuntu-latest-pipeline
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Install stable toolchain - name: Install toolchain
uses: actions-rs/toolchain@v1 uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: rustfmt, clippy
- name: lint - ubuntu-latest - name: lint - ubuntu-latest
if: success() || failure() if: success() || failure()
run: chmod 777 ./ci_scripts/lint-ubuntu.sh && ./ci_scripts/lint-ubuntu.sh run: chmod 777 ./ci_scripts/lint-ubuntu.sh && ./ci_scripts/lint-ubuntu.sh

View File

@ -1,2 +1,3 @@
[toolchain] [toolchain]
channel = "nightly" channel = "1.91.1"
profile = "default"