Skip to content

Merge pull request #4 from zoedberg/v0.11_fixes #10

Merge pull request #4 from zoedberg/v0.11_fixes

Merge pull request #4 from zoedberg/v0.11_fixes #10

Workflow file for this run

name: Tests
on:
push:
branches:
- master
tags:
- 'v[0-9]+\.*'
pull_request:
branches:
- master
- develop
- 'v[0-9]+.[0-9]+'
env:
CARGO_TERM_COLOR: always
jobs:
unix-testing:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-13, macos-latest ]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Test ${{matrix.os}}
run: cargo test --workspace --all-features --no-fail-fast
windows-testing:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Install OpenSSL
run: |
vcpkg install openssl:x64-windows-static-md
vcpkg integrate install
- name: Test windows-latest
run: cargo test --workspace --all-features --no-fail-fast