Add support for monoio #214
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: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install rustc and clippy nightly | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: nightly | |
components: cargo, rustc, clippy, rustfmt | |
- name: Install Just | |
uses: taiki-e/install-action@v2 | |
with: | |
tool: just | |
- name: "Test: Async" | |
run: just async-tests | |
timeout-minutes: 10 | |
- name: "Test: Tokio-Uring" | |
run: just tokio-uring-tests | |
- name: "Test: Monoio" | |
run: just monoio-tests | |
- name: "Tests: Sync" | |
run: just sync-tests | |
timeout-minutes: 10 | |
- name: "Tests: No compression" | |
run: just no-compression-tests | |
timeout-minutes: 10 | |
- name: "Tests: Wisckey" | |
run: just wisckey-tests | |
- name: "Tests: Wisckey with no compression" | |
run: just wisckey-no-compression-tests | |
timeout-minutes: 10 | |
- name: "Tests: Sync Wisckey" | |
run: just wisckey-sync-tests | |
timeout-minutes: 10 | |
- name: "Lint Checks: Tokio (with sync FS)" | |
run: just async-lint | |
- name: "Lint Checks: Tokio-Uring" | |
run: just tokio-uring-lint | |
- name: "Lint Checks: Monoio " | |
run: just monoio-lint | |
- name: "Lint Checks: Synchronous API" | |
run: just sync-lint | |
- name: "Lint Checks: Wisckey" | |
run: just wisckey-lint | |
- name: "Lint Checks: Wisckey with no comrpession" | |
run: just wisckey-lint | |
- name: "Lint Checks: Wisckey and Tokio-Uring" | |
run: just tokio-uring-wisckey-lint | |
- name: "Formatting Checks" | |
run: just check-formatting | |
# Does not work well as some dependencies only used by certain features | |
#- name: Check for unused dependencies | |
# run: | | |
# cargo install cargo-udeps | |
# just udeps |