diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 94ebc690..ddb8e61d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,11 +17,16 @@ jobs: profile: minimal toolchain: ${{ matrix.rust-version }} override: true - - name: Build + - name: Build lib uses: actions-rs/cargo@v1 with: command: rustc - args: --verbose -- -D warnings + args: --verbose --lib -- -D warnings + - name: Build bin + uses: actions-rs/cargo@v1 + with: + command: rustc + args: --verbose --bin scryer-prolog -- -D warnings - name: Test uses: actions-rs/cargo@v1 with: