Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,32 @@ env:
CARGO_TERM_COLOR: always

jobs:
build:

windows:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- uses: ilammy/msvc-dev-cmd@v1
- name: install cxxbridge
run: cargo install cxxbridge-cmd
- name: install cargo-make
run: cargo install cargo-make
- name: compile test
- name: Compile test
run: cargo make build_test
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
macos:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v3
- name: install cxxbridge
run: cargo install cxxbridge-cmd
- name: install cargo-make
run: cargo install cargo-make
- name: Compile test
run: cargo make build_test
- name: Build
run: cargo build --verbose
# - name: Run tests
# run: cargo test --verbose