Skip to content

Merge pull request #151 from cqwense/feature/daemonset-priority-class #530

Merge pull request #151 from cqwense/feature/daemonset-priority-class

Merge pull request #151 from cqwense/feature/daemonset-priority-class #530

Workflow file for this run

name: CI
on:
pull_request:
push:
schedule:
- cron: '0 0 * * 0' # 00:00 Sunday
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Update local toolchain
run: |
rustup update
rustup component add clippy
- name: Toolchain info
run: |
cargo --version --verbose
rustc --version
cargo clippy --version
- name: Lint
run: |
cargo fmt -- --check
cargo clippy -- -D warnings
- name: Test
run: |
cargo check
cargo test --all