1
0
Fork 0

Build both with and without opengl on CI

This commit is contained in:
Robbert van der Helm 2022-02-07 20:25:01 +01:00
parent 3551d5e253
commit cb714401d8

View file

@ -21,7 +21,9 @@ jobs:
with:
toolchain: stable
override: true
- name: Build
- name: Build with default features
run: cargo build --examples --workspace --verbose
- name: Build again with all features
run: cargo build --examples --workspace --all-features --verbose
- name: Run tests
run: cargo test --examples --workspace --verbose
run: cargo test --examples --workspace --all-features --verbose