47 lines
1017 B
YAML
47 lines
1017 B
YAML
name: CI
|
|
on: [push]
|
|
|
|
jobs:
|
|
build-linux:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Build
|
|
run: |
|
|
cargo build --verbose --all-features
|
|
- name: Test
|
|
run: |
|
|
cargo test --verbose --all-features
|
|
|
|
|
|
build-windows:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Build
|
|
run: |
|
|
cargo build --verbose --all-features
|
|
- name: Test
|
|
run: |
|
|
cargo test --verbose --all-features
|
|
|
|
build-macosx:
|
|
runs-on: macosx-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Build
|
|
run: |
|
|
cargo build --verbose --all-features
|
|
- name: Test
|
|
run: |
|
|
cargo test --verbose --all-features
|
|
|
|
check-readme:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Install cargo-sync-readme
|
|
run: cargo install --force cargo-sync-readme
|
|
- name: Check
|
|
run: cargo sync-readme -c
|