Update jsonpath-rust requirement from 0.3.0 to 0.4.0 #21
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
name: CI | |
env: | |
CARGO_TERM_COLOR: always | |
on: | |
push: | |
branches: | |
- main | |
pull_request: {} | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: arduino/setup-protoc@v1 | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
toolchain: nightly | |
override: true | |
profile: minimal | |
components: clippy, rustfmt | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
key: . | |
workspaces: . | |
- name: Check | |
working-directory: . | |
run: | | |
cargo clippy --all --all-targets --all-features | |
- name: rustfmt | |
working-directory: . | |
run: | | |
cargo fmt --all -- --check | |
check-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
toolchain: nightly | |
override: true | |
profile: minimal | |
- uses: Swatinem/rust-cache@v1 | |
- name: cargo doc | |
env: | |
RUSTDOCFLAGS: "-D broken-intra-doc-links" | |
run: cargo doc --all-features --no-deps | |
cargo-hack: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
toolchain: nightly | |
override: true | |
profile: minimal | |
- uses: Swatinem/rust-cache@v1 | |
- name: Install cargo-hack | |
run: | | |
curl -LsSf https://github.com/taiki-e/cargo-hack/releases/latest/download/cargo-hack-x86_64-unknown-linux-gnu.tar.gz | tar xzf - -C ~/.cargo/bin | |
- name: cargo hack check | |
run: cargo hack check --each-feature --no-dev-deps --all | |
test-versions: | |
needs: check | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: [nightly, beta] | |
steps: | |
- uses: actions/checkout@master | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
toolchain: ${{ matrix.rust }} | |
override: true | |
profile: minimal | |
- uses: Swatinem/rust-cache@v1 | |
- name: Run tests | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --all --all-features --all-targets | |
test-docs: | |
needs: check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
toolchain: nightly | |
override: true | |
profile: minimal | |
- uses: Swatinem/rust-cache@v1 | |
- name: Run doc tests | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --all-features --doc | |
dependencies-are-sorted: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
toolchain: beta | |
override: true | |
profile: minimal | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
key: . | |
workspaces: . | |
- name: Install cargo-sort | |
run: | | |
cargo install cargo-sort | |
- name: Remove non-crate folder | |
run: rm -rf ushift-webiste || true | |
working-directory: . | |
- name: Check dependency tables | |
working-directory: . | |
run: | | |
cargo sort --workspace --grouped --check |