Skip to content

Commit

Permalink
Fix indentation in new MSRV job
Browse files Browse the repository at this point in the history
Also, make indentation style consistent between both jobs
  • Loading branch information
cole14 committed Oct 12, 2023
1 parent 5fe73b0 commit 964d4ab
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Build no_std
run: cargo build --no-default-features
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Build no_std
run: cargo build --no-default-features

msrv-all:
runs-on: ubuntu-latest
Expand All @@ -29,5 +29,5 @@ jobs:
run: rustup update 1.62.1 && rustup default 1.62.1
- name: Test
run: cargo test --verbose
- name: Build no_std
run: cargo build --no-default-features
- name: Build no_std
run: cargo build --no-default-features

0 comments on commit 964d4ab

Please sign in to comment.