Skip to content

Bump log from 0.4.17 to 0.4.22 #89

Bump log from 0.4.17 to 0.4.22

Bump log from 0.4.17 to 0.4.22 #89

Workflow file for this run

name: Build and Test Rust
on:
pull_request:
branches:
- main
- dev
push:
branches:
- main
- dev
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: 1.59
target: wasm32-wasi
components: rustfmt, clippy
- name: Run cargo clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
- uses: actions-rs/cargo@v1
with:
command: build
args: --release --all-features