v1.4.5 #146
Workflow file for this run
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, pull_request] | |
name: Test and Build | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
rust-toolchain: [stable] | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Cache build artifacts | |
id: cache-cargo | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: test-${{ runner.os }}-cargo-${{ matrix.rust-toolchain }} | |
- name: Cache integration artifacts | |
id: cache-integration | |
uses: actions/cache@v2 | |
with: | |
path: | | |
tests/integration/runner/node_modules | |
key: test-${{ runner.os }}-integration-${{ matrix.rust-toolchain }} | |
- name: Install Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.rust-toolchain }} | |
components: rustfmt | |
override: true | |
- name: Install NodeJS | |
uses: actions/setup-node@v1 | |
- name: Verify versions | |
run: rustc --version && rustup --version && cargo --version && node --version && npm --version | |
- name: Build code | |
run: cargo build | |
- name: Test code | |
run: cargo test | |
- name: Check code style | |
run: cargo fmt -- --check | |
- name: Run integration tests | |
run: tests/integration/scripts/run.sh |