mirror of
https://github.com/pezkuwichain/wasm-instrument.git
synced 2026-04-24 15:37:57 +00:00
8380823e62
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
98 lines
2.2 KiB
YAML
98 lines
2.2 KiB
YAML
name: Check
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
rustfmt:
|
|
runs-on: "ubuntu-latest"
|
|
steps:
|
|
- name: Install Rust toolchain
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
toolchain: nightly
|
|
components: rustfmt
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Cargo fmt
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
toolchain: nightly
|
|
command: fmt
|
|
args: --all -- --check
|
|
|
|
clippy:
|
|
runs-on: "ubuntu-latest"
|
|
steps:
|
|
- name: Install Rust toolchain
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
toolchain: stable
|
|
components: clippy
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Cargo clippy
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
toolchain: stable
|
|
command: clippy
|
|
args: --all-targets --all-features -- -D warnings
|
|
|
|
test:
|
|
strategy:
|
|
matrix:
|
|
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
|
|
toolchain: ["stable", "nightly"]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- name: Install Rust toolchain
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
target: wasm32-unknown-unknown
|
|
toolchain: ${{ matrix.toolchain }}
|
|
|
|
- name: Set git to use LF
|
|
run: |
|
|
git config --global core.autocrlf false
|
|
git config --global core.eol lf
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Cargo build
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
toolchain: ${{ matrix.toolchain }}
|
|
command: build
|
|
|
|
- name: Cargo build (no_std)
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
toolchain: ${{ matrix.toolchain }}
|
|
command: build
|
|
args: --no-default-features
|
|
|
|
- name: Cargo build (wasm)
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
toolchain: ${{ matrix.toolchain }}
|
|
command: build
|
|
args: --no-default-features --target wasm32-unknown-unknown
|
|
|
|
- name: Cargo test
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
toolchain: ${{ matrix.toolchain }}
|
|
command: test
|
|
args: --all-features
|