solve minimum-falling-path-sum with cache of recursive #76
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: check_lint_test | |
on: [push] | |
#env: | |
# TOOLCHAIN: nightly-2022-03-01-x86_64-unknown-linux-gnu | |
jobs: | |
typo_check_lint_test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Actions Repository | |
uses: actions/checkout@v2 | |
- name: typo | |
uses: crate-ci/[email protected] | |
- name: install nightly toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
profile: minimal | |
components: rustfmt, clippy | |
override: true | |
- name: check | |
uses: actions-rs/cargo@v1 | |
with: | |
toolchain: nightly | |
command: check | |
args: --tests | |
- name: clippy | |
uses: actions-rs/cargo@v1 | |
with: | |
toolchain: nightly | |
command: clippy | |
args: --tests |