Skip to content

build(deps): bump slack-morphism from 2.4.1 to 2.5.0 #886

build(deps): bump slack-morphism from 2.4.1 to 2.5.0

build(deps): bump slack-morphism from 2.4.1 to 2.5.0 #886

Workflow file for this run

name: Rust
on:
push:
branches: ["main"]
pull_request: {}
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: Swatinem/rust-cache@v2
- name: Fmt Check
run: cargo fmt -- --check
- name: Clippy
run: cargo clippy --no-deps -- -Dwarnings
- name: Compile
run: cargo build
- name: Test
run: cargo test