Skip to content

feat: CI adding wasm32-wasip1 target #84

feat: CI adding wasm32-wasip1 target

feat: CI adding wasm32-wasip1 target #84

Workflow file for this run

name: Continuous Integration
on: [push]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-Dwarnings"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
with:
target: wasm32-wasip1
components: rustfmt, clippy
- name: Run cargo-audit binary crate
uses: rustsec/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Build
run: cargo build --release --all-features
- name: Documentation
run: cargo doc
- name: Run Clippy
run: cargo clippy --all-targets --all-features
release:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
needs: build
steps:
- name: Clone repo
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
with:
target: wasm32-wasip1
components: rustfmt, clippy
- name: Run Release PR
uses: MarcoIeni/[email protected]
with:
command: release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}