Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,8 @@ jobs:
needs: release
steps:
- uses: actions/checkout@v2
- name: i guess windows-latest does not have protoc or cmake but we need protoc
run: choco install protoc
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
Expand Down
12 changes: 2 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,6 @@ jobs:
- name: Rigorous lint via Clippy
run: cargo clippy --all-targets --all-features -- -D warnings

rustfmt-windows:
name: Style & Lint - Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: rustfmt
run: cargo fmt -- --check
- name: Rigorous lint via Clippy
run: cargo clippy --all-targets --all-features -- -D warnings

build:
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -79,6 +69,8 @@ jobs:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: i guess windows-latest does not have protoc or cmake but we need protoc
run: choco install protoc
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
Expand Down
Loading