Skip to content

Commit

Permalink
remove move formating into it's own job
Browse files Browse the repository at this point in the history
  • Loading branch information
oneElectron committed Nov 22, 2023
1 parent c50a63a commit 4bbcee8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/ubuntu-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ env:

jobs:
build:

runs-on: ubuntu-latest

steps:
Expand All @@ -24,6 +23,15 @@ jobs:
- name: Run tests with updater
run: cargo test --verbose --no-default-features --features updater -- --test-threads=1

format:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Run formatting checks
run: cargo fmt --all -- --check

lint:
runs-on: ubuntu-latest
steps:
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/windows.latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ jobs:
- name: Build
run: cargo build --verbose

- name: Run formatting checks
run: cargo fmt --all -- --check

- name: Run tests
run: cargo test --verbose --no-default-features -- --test-threads=1

Expand Down

0 comments on commit 4bbcee8

Please sign in to comment.