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

View File

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