Merge pull request #1 from evervault/donal/spe-829-move-acmestoragecl… #3
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
on: | |
push: | |
paths: | |
- src/** | |
- .github/workflows/lint-and-test.yml | |
name: Lint and Test | |
jobs: | |
lint_and_test_rust: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install latest stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
components: rustfmt, clippy | |
- uses: davidB/rust-cargo-make@10579dcff82285736fad5291533b52d3c93d6b3b | |
- name: Run CI Tasks with backtrace | |
run: cargo make ci | |
env: | |
RUST_BACKTRACE: full |