Add Bézier curves.

This commit is contained in:
Dimitri Sabadie
2019-09-23 17:06:32 +02:00
parent e76f18ac5b
commit b05582d653
7 changed files with 148 additions and 40 deletions

View File

@ -7,27 +7,42 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: Build
run: |
cargo build --verbose
cargo build --verbose --features bezier
run: cargo build --verbose
- name: Test
run: cargo test --verbose
run: |
cargo test --verbose
cargo test --verbose --features bezier
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Build
run: |
cargo build --verbose
cargo build --verbose --features bezier
run: cargo build --verbose
- name: Test
run: cargo test --verbose
run: |
cargo test --verbose
cargo test --verbose --features bezier
build-macosx:
runs-on: macosx-latest
steps:
- uses: actions/checkout@v1
- name: Build
run: |
cargo build --verbose
cargo build --verbose --features bezier
run: cargo build --verbose
- name: Test
run: cargo test --verbose
run: |
cargo test --verbose
cargo test --verbose --features bezier
check-readme:
runs-on: ubuntu-latest