Skip to content

Commit

Permalink
CI: first attempt at Windows CI
Browse files Browse the repository at this point in the history
  • Loading branch information
slivingston committed Jan 6, 2025
1 parent 4da72ef commit df9e144
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,23 @@ jobs:
strategy:
matrix:
os: [
ubuntu-22.04,
macos-latest,
windows-latest,
]
steps:
- uses: actions/checkout@v4
- run: rustup toolchain install stable --profile minimal
- uses: Swatinem/rust-cache@v2
- name: Install OpenSSL manually if on Windows
if: runner.os == 'Windows'
run: |
vcpkg install openssl:x64-windows
vcpkg integrate install
- name: Prepare to build
run: |
mkdir keys
touch keys/public.pem
- name: Lint
if: runner.os != 'Windows'
run: |
cargo fmt --check
cargo check
Expand Down

0 comments on commit df9e144

Please sign in to comment.