Skip to content
This repository has been archived by the owner on Oct 18, 2023. It is now read-only.

Update Rust crate tokio to 1.33.0 #114

Update Rust crate tokio to 1.33.0

Update Rust crate tokio to 1.33.0 #114

Workflow file for this run

# 🐻‍❄️📦 helm-plugin: Helm plugin for charted, to help push Helm charts into charted-server easily!~
# Copyright 2022-2023 Noelware, LLC. <[email protected]>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Rust CI
on:
workflow_dispatch: {}
push:
branches:
- 'issue/gh-**'
- 'feat/**'
- nightly
- main
paths-ignore:
- '.github/**'
- '.husky/**'
- '.vscode/**'
- 'assets/**'
- 'locales/**'
- 'docker/**'
- '.dockerignore'
- '.eslintignore'
- '.gitignore'
- '**.md'
- 'LICENSE'
- 'renovate.json'
pull_request:
types: [opened, synchronize]
branches:
- 'issue/gh-**'
- 'feat/**'
- nightly
- main
paths-ignore:
- '.github/**'
- '.husky/**'
- '.vscode/**'
- 'assets/**'
- 'locales/**'
- 'docker/**'
- '.dockerignore'
- '.eslintignore'
- '.gitignore'
- '**.md'
- 'LICENSE'
- 'renovate.json'
jobs:
ci:
name: Rust CI
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Setup Rust cache
uses: Swatinem/rust-cache@v2
- name: Clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{secrets.GITHUB_TOKEN}}
args: --all-features
# - name: Format with rustfmt
# uses: mbrobbel/rustfmt-check@master
# with:
# token: ${{ secrets.NOEL_TOKEN }}