Format with nightly #26
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: | |
push: | |
pull_request: | |
workflow_dispatch: | |
schedule: [cron: "40 1 * * *"] | |
permissions: | |
contents: read | |
env: | |
RUSTFLAGS: -Dwarnings | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: rust version | |
run: | | |
rustc --version | |
cargo --version | |
- uses: taiki-e/install-action@cargo-hack | |
- uses: taiki-e/install-action@cargo-nextest | |
- name: feature compatibility | |
run: make check-features | |
- name: rustfmt | |
run: cargo fmt -- --check | |
- name: clippy | |
run: make clippy | |
- name: Run tests | |
run: make test | |
- name: rustdoc | |
run: make doc | |
wasm: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: rust version | |
run: | | |
rustc --version | |
cargo --version | |
- uses: taiki-e/install-action@wasm-pack | |
- name: Install clang | |
run: sudo apt-get install -y clang | |
- name: Run tests in wasm | |
run: make wasm |