Skip to content
This repository has been archived by the owner on Jan 4, 2024. It is now read-only.

add ci pass job

add ci pass job #26

Workflow file for this run

name: CI

Check failure on line 1 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: ci
permissions:
contents: read
pull-requests: read
on:
push:
pull_request:
jobs:
clippy:
name: Clippy ${{matrix.os == 'windows' && '(windows)' || ''}}
runs-on: ${{matrix.os}}-latest
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
os: [ubuntu, windows]
env:
RUSTFLAGS: -Dwarnings
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Rust Stable
uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: Install Rust Beta
uses: dtolnay/rust-toolchain@beta
with:
components: clippy
- name: Install Rust Nightly
uses: dtolnay/rust-toolchain@nightly
with:
components: clippy
- name: Clippy (stable)
run: cargo +stable clippy --all-features --all-targets --workspace && cargo clean
- name: Clippy (beta)
run: cargo +beta clippy --all-features --all-targets --workspace && cargo clean
- name: Clippy (nightly)
run: cargo +nightly clippy --all-features --all-targets --workspace && cargo clean
fmt:
name: Rustfmt
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Rust Stable
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- name: Install Rust Beta
uses: dtolnay/rust-toolchain@beta
with:
components: rustfmt
- name: Install Rust Nightly
uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- name: Check Formatting (stable)
run: cargo +stable fmt --all --check
- name: Check Formatting (beta)
run: cargo +beta fmt --all --check
- name: Check Formatting (nightly)
run: cargo +nightly fmt --all --check
test:
name: Test ${{matrix.rust-channel}} ${{matrix.os == 'windows' && '(windows)' || ''}}
runs-on: ${{matrix.os}}-latest
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
rust-channel: [stable, beta, nightly]
os: [ubuntu, windows]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{matrix.rust-channel}}
- name: Test Default Features
run: cargo test --all-targets --workspace
- name: Test All Features
run: cargo test --all-features --all-targets --workspace
- name: Test No Features
run: cargo test --no-default-features --all-targets --workspace
# just a simple job that requires all other jobs to pass for it to pass
# used for branch protection rules requiring ci pass (to avoid listing every matrix permutation)
ci:
name: CI Pass
runs-on: ubuntu-latest
needs:
- clippy
- fmt
- test