Skip to content

Implement WASIX

Implement WASIX #27

Workflow file for this run

name: Continuous Integration
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
check:
name: Compile and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Rust
uses: dsherret/rust-toolchain-file@v1
- name: Install Nextest
uses: taiki-e/install-action@nextest
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Type Checking
run: cargo check --workspace --verbose --locked
- name: Build
run: cargo build --workspace --verbose --locked
- name: Test
run: cargo nextest run --workspace --verbose --locked
- name: Doc Tests
run: cargo test --doc --workspace --verbose --locked
lints:
name: Linting and Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Setup Rust
uses: dsherret/rust-toolchain-file@v1
- name: Check Formatting
run: cargo fmt --all --verbose --check
- name: Clippy
run: cargo clippy --workspace --verbose
workflow-times:
name: Workflow Timings
runs-on: ubuntu-latest
needs: check
steps:
- name: Time Reporter
uses: Michael-F-Bryan/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
jobs: Compile and Test
message: |
Make sure you keep an eye on build times!
The goal is to keep CI times under 5 minutes so developers can maintain a fast edit-compile-test cycle.