diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/rust.yml | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 7c00dab4..13ec20ff 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -19,15 +19,6 @@ jobs: steps: - name: Checkout source code uses: actions/checkout@v2 - with: - path: typst - - - name: Checkout pdf-writer - uses: actions/checkout@v2 - with: - repository: typst/pdf-writer - token: ${{ secrets.TYPSTC_ACTION_TOKEN }} - path: pdf-writer - name: Install Rust uses: actions-rs/toolchain@v1 @@ -43,16 +34,16 @@ jobs: uses: actions-rs/cargo@v1 with: command: build - args: --manifest-path typst/Cargo.toml --all-features + args: --all-features - name: Test uses: actions-rs/cargo@v1 with: command: test - args: --manifest-path typst/Cargo.toml --all-features + args: --all-features - name: Test without incremental uses: actions-rs/cargo@v1 with: command: test - args: --manifest-path typst/Cargo.toml --no-default-features --features fs + args: --no-default-features --features fs |
