diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e43ee96..e2843f5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -159,11 +159,18 @@ jobs: # with: # platform: x64 # packages: pkg-config libvncserver-devel - - uses: actions-rs/cargo@v1 + - name: Build with without vnc and without alpha + uses: actions-rs/cargo@v1 with: command: build args: --target=${{ matrix.target }} --no-default-features - - uses: actions-rs/cargo@v1 + - name: Build with with vnc and without alpha + uses: actions-rs/cargo@v1 + with: + command: build + args: --target=${{ matrix.target }} --no-default-features --features vnc + - name: Build with with all features + uses: actions-rs/cargo@v1 with: command: build args: --target=${{ matrix.target }} --all-features