diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 71423a8..077cd56 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,30 +12,30 @@ env: CARGO_TERM_COLOR: always jobs: -# test: -# name: CI -# runs-on: ${{ matrix.os }}-latest -# strategy: -# fail-fast: true -# matrix: -# os: -# - ubuntu -# - windows -# -# steps: -# - uses: actions/checkout@v4 -# -# - uses: dtolnay/rust-toolchain@stable -# with: -# toolchain: 1.71.0 -# components: clippy, rustfmt -# -# - uses: Swatinem/rust-cache@v2 -# -# - run: cargo tree --locked -# - run: cargo fmt --all -- --check -# - run: cargo clippy --all-targets --all-features --workspace -- -D warnings -# - run: cargo test --all-features --workspace + test: + name: CI + runs-on: ${{ matrix.os }}-latest + strategy: + fail-fast: true + matrix: + os: + - ubuntu + - windows + + steps: + - uses: actions/checkout@v4 + + - uses: dtolnay/rust-toolchain@stable + with: + toolchain: 1.71.0 + components: clippy, rustfmt + + - uses: Swatinem/rust-cache@v2 + + - run: cargo tree --locked + - run: cargo fmt --all -- --check + - run: cargo clippy --all-targets --all-features --workspace -- -D warnings + - run: cargo test --all-features --workspace release: name: CI