adjust ci

This commit is contained in:
Skgland
2021-02-25 23:42:41 +01:00
parent 2f428b7261
commit 90aefd35f0

View File

@@ -17,11 +17,16 @@ jobs:
profile: minimal profile: minimal
toolchain: ${{ matrix.rust-version }} toolchain: ${{ matrix.rust-version }}
override: true override: true
- name: Build - name: Build lib
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
with: with:
command: rustc 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 - name: Test
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
with: with: