release 0.2.4 #106
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: [push, pull_request] | |
jobs: | |
linux: | |
name: Linux ubuntu-latest | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Build | |
run: cargo build --verbose | |
- name: Run example | |
run: cargo run --verbose --example info | |
windows: | |
name: Windows ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-2019, windows-latest] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Build | |
run: cargo build --verbose | |
- name: Run example | |
run: cargo run --verbose --example info | |
macos: | |
name: macOS-latest | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Get Rust | |
run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rustup && sh ./rustup -y | |
- name: Build | |
run: source ~/.cargo/env; cargo build --verbose | |
- name: Run example | |
run: source ~/.cargo/env; cargo run --verbose --example info |