Skip to content

Commit

Permalink
just go back to regular rustfmt, no comment
Browse files Browse the repository at this point in the history
  • Loading branch information
amika-sq committed Dec 1, 2023
1 parent ffa01ef commit 460328e
Showing 1 changed file with 21 additions and 17 deletions.
38 changes: 21 additions & 17 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,29 +12,33 @@ env:
CARGO_TERM_COLOR: always

jobs:
# test:
# name: cargo test
# strategy:
# matrix:
# os: [ ubuntu-latest, macos-latest, windows-latest ]
# rust: [stable, nightly]
# runs-on: ${{ matrix.os }}
# steps:
# - uses: actions/checkout@v4
# - name: Set up Rust
# uses: dtolnay/rust-toolchain@stable
# with:
# toolchain: ${{ matrix.rust }}
# - name: Test
# run: cargo test --workspace
test:
name: cargo test
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
rust: [stable, nightly]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: ${{ matrix.rust }}
- name: Test
run: cargo test --workspace
format:
name: cargo fmt
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: actions/checkout@v4
- name: Setup Rustfmt
uses: dtolnay/rust-toolchain@stable
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
components: rustfmt
- uses: clechasseur/rs-fmt-check@v2
- name: Rustfmt Check
id: rustfmt-check
uses: actions-rust-lang/rustfmt@v1

0 comments on commit 460328e

Please sign in to comment.