Skip to content

Commit

Permalink
check
Browse files Browse the repository at this point in the history
Signed-off-by: Jess Frazelle <[email protected]>
  • Loading branch information
jessfraz committed Jun 20, 2024
1 parent f39c287 commit d314383
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/cargo-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ on:
- '**/Cargo.lock'
- '**/rust-toolchain.toml'
- '**.rs'
- .github/workflows/cargo-build.yml
- .github/workflows/cargo-check.yml
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
name: cargo build
name: cargo check
jobs:
cargobuild:
name: cargo build
cargocheck:
name: cargo check
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -31,10 +31,10 @@ jobs:
- name: Rust Cache
uses: Swatinem/[email protected]

- name: Run build
- name: Run check
run: |
cd "${{ matrix.dir }}"
# We specifically want to test the disable-println feature
# Since it is not enabled by default, we need to specify it
# This is used in kcl-lsp
cargo build --all --features disable-println --features pyo3
cargo check --all --features disable-println --features pyo3

0 comments on commit d314383

Please sign in to comment.