Skip to content

[ISSUES#83] extra post param #78

[ISSUES#83] extra post param

[ISSUES#83] extra post param #78

Workflow file for this run

name: Rustfmt
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
run: rustup update stable
- name: Install rustfmt and clippy
run: rustup component add rustfmt clippy
- name: Check code format
run: cargo fmt -- --check
# - name: Run clippy
# run: cargo clippy -- -D warnings
- name: Build
run: cargo build --verbose
- name: Test
run: cargo test --verbose