discloud-rs 0.3.0-alpha

A rust wrapper for Discloud's API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
name: "[Lint] Check formatting"
on: [push]
jobs:
  formatting:
    name: cargo fmt
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      # Ensure rustfmt is installed and setup problem matcher
      - uses: actions-rust-lang/setup-rust-toolchain@v1
        with:
          components: rustfmt
      - name: Rustfmt Check
        uses: actions-rust-lang/rustfmt@v1