feat(deps): update rust crate serde_json to 1.0.107 #134
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" | |
on: | |
pull_request: | |
paths-ignore: | |
- "**.md" | |
- ".github/**" | |
- "!.github/workflows/ci.yml" | |
push: | |
branches: | |
- "master" | |
paths-ignore: | |
- "**.md" | |
- ".github/**" | |
- "!.github/workflows/ci.yml" | |
concurrency: | |
group: "${{ github.workflow }}-${{ github.ref }}" | |
cancel-in-progress: true | |
env: | |
RUST_TEST_THREADS: 1 | |
jobs: | |
marine-rs-sdk: | |
name: "Run tests" | |
runs-on: builder | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup rust toolchain | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- name: Run cargo fmt | |
run: cargo fmt --all -- --check | |
- name: Run cargo build | |
env: | |
CARGO_BUILD_TARGET: wasm32-wasi | |
run: cargo build | |
- name: Run cargo check | |
run: cargo check -v --all-features | |
- name: Run marine-macro-impl tests | |
run: cargo test | |
working-directory: crates/marine-macro-impl | |
- name: Run cargo test | |
run: cargo test --release --all-features --no-fail-fast | |
- name: Run cargo clippy | |
env: | |
CARGO_BUILD_TARGET: wasm32-wasi | |
run: cargo clippy |