Skip to content

chore(deps): update rust crate serde to v1.0.207 #366

chore(deps): update rust crate serde to v1.0.207

chore(deps): update rust crate serde to v1.0.207 #366

Workflow file for this run

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@v4
- 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