Skip to content

remove clippy for now, remove static #1

remove clippy for now, remove static

remove clippy for now, remove static #1

Workflow file for this run

on: [push, pull_request]
name: CI
jobs:
check:
name: Checker
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: check
lint:
name: Linter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all
# - uses: actions-rs/cargo@v1
# with:
# command: clippy
# args: -- -D warnings
test:
name: Tester
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: test