Skip to content

Commit

Permalink
Merge pull request #23 from wiktor-k/add-support-for-windows
Browse files Browse the repository at this point in the history
Add support for Windows Named Pipes
  • Loading branch information
wiktor-k authored Mar 25, 2024
2 parents e494afa + 70ec7b3 commit fc2f69b
Show file tree
Hide file tree
Showing 6 changed files with 463 additions and 128 deletions.
24 changes: 21 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,23 +22,41 @@ jobs:

formatting:
name: Check formatting
runs-on: ubuntu-latest
strategy:
matrix:
include:
- os: ubuntu-latest
- os: macos-latest
- os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Check formatting
run: cargo fmt --all -- --check

tests:
name: Unit tests
runs-on: ubuntu-latest
strategy:
matrix:
include:
- os: ubuntu-latest
- os: macos-latest
- os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Build and test
run: cargo build --verbose --all && cargo test --verbose --all

lints:
name: Clippy lints
runs-on: ubuntu-latest
strategy:
matrix:
include:
- os: ubuntu-latest
- os: macos-latest
- os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Check for lints
Expand Down
Loading

0 comments on commit fc2f69b

Please sign in to comment.