Skip to content

fix: test

fix: test #159

Workflow file for this run

name: cli-bin
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./suppaftp-cli
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --package suppaftp-cli
- name: Format
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --package suppaftp-cli -- -Dwarnings