Skip to content

fix: key expiration logic #73

fix: key expiration logic

fix: key expiration logic #73

Workflow file for this run

# -------------------------------------------------------------------
# ------------------------------- WARNING ---------------------------
# -------------------------------------------------------------------
#
# This file was automatically generated by gh-workflows using the
# gh-workflow-gen bin. You should add and commit this file to your
# git repository. **DO NOT EDIT THIS FILE BY HAND!** Any manual changes
# will be lost if the file is regenerated.
#
# To make modifications, update your `build.rs` configuration to adjust
# the workflow description as needed, then regenerate this file to apply
# those changes.
#
# -------------------------------------------------------------------
# ----------------------------- END WARNING -------------------------
# -------------------------------------------------------------------
name: autofix.ci
env:
RUSTFLAGS: '-Dwarnings'
'on':
pull_request:
types:
- opened
- synchronize
- reopened
branches:
- main
push:
branches:
- main
tags:
- v*
jobs:
lint:
name: Lint Fix
runs-on: ubuntu-latest
permissions:
contents: read
concurrency:
group: autofix-${{github.ref}}
cancel-in-progress: false
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Rust Toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: nightly
components: clippy, rustfmt
cache: 'true'
cache-directories: |-
~/.cargo/registry
~/.cargo/git
target
- name: Install protoc
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
- name: Cargo Fmt
run: cargo +nightly fmt --all
- name: Cargo Clippy
run: cargo +nightly clippy --fix --allow-dirty --all-features --workspace -- -D warnings
- name: autofix.ci
uses: autofix-ci/action@551dded8c6cc8a1054039c8bc0b8b48c51dfc6ef