Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
veeso committed Oct 22, 2024
1 parent 29a1626 commit 1ec4dc2
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 37 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Run tests
run: cargo test --features integration-tests --no-fail-fast
env:
RUST_LOG: trace
- name: Format
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy -- -Dwarnings
- name: Run tests
run: cargo test --features integration-tests --no-fail-fast
env:
RUST_LOG: trace
40 changes: 20 additions & 20 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,26 @@ name: macos
on: [push, pull_request]

env:
CARGO_TERM_COLOR: always
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: macos-latest
build:
runs-on: macos-latest

steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: brew update && brew install macfuse samba
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Run tests
run: cargo test --no-fail-fast
env:
RUST_LOG: trace
- name: Format
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy -- -Dwarnings
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: brew update && brew install macfuse samba
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Format
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy -- -Dwarnings
- name: Run tests
run: cargo test --no-fail-fast
env:
RUST_LOG: trace
28 changes: 15 additions & 13 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,21 @@ name: windows
on: [push, pull_request]

env:
CARGO_TERM_COLOR: always
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: windows-2019
build:
runs-on: windows-2019

steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --all-features
- name: Run tests
run: cargo test --no-fail-fast
env:
RUST_LOG: trace
- name: Clippy
run: cargo clippy -- -Dwarnings
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --all-features
- name: Format
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy -- -Dwarnings
- name: Run tests
run: cargo test --no-fail-fast
env:
RUST_LOG: trace

0 comments on commit 1ec4dc2

Please sign in to comment.