Skip to content
This repository has been archived by the owner on May 5, 2024. It is now read-only.

fix(deps): update rust crate serenity to 0.12.1 #129

fix(deps): update rust crate serenity to 0.12.1

fix(deps): update rust crate serenity to 0.12.1 #129

Workflow file for this run

name: CI
on:
push:
paths:
- 'src/**'
- 'Cargo.toml'
- 'Cargo.lock'
- 'rust-toolchain'
- '.github/workflows/ci.yml'
env:
CARGO_INCREMENTAL: 0
jobs:
rust:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/[email protected]
with:
toolchain: stable
components: clippy
override: true
- name: cache dependencies
uses: Swatinem/[email protected]
- name: clippy check
uses: actions-rs/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
- name: compile for unit test
uses: actions-rs/[email protected]
with:
command: test
args: --no-run --locked
- name: unit test
uses: actions-rs/[email protected]
with:
command: test