mirror of
https://github.com/zed-industries/zed.git
synced 2026-08-22 23:45:58 +00:00
28 lines
767 B
YAML
28 lines
767 B
YAML
name: "Run tests on Windows"
|
|
description: "Runs the tests on Windows"
|
|
|
|
inputs:
|
|
working-directory:
|
|
description: "The working directory"
|
|
required: true
|
|
default: "."
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Install test runner
|
|
working-directory: ${{ inputs.working-directory }}
|
|
uses: taiki-e/install-action@a6b2e2dcd845ddd7f509ce4f3ed3d922b80cc5d9 # 2.84.0
|
|
with:
|
|
tool: nextest
|
|
|
|
- name: Install Node
|
|
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
|
|
with:
|
|
node-version: "18"
|
|
|
|
- name: Run tests
|
|
shell: powershell
|
|
working-directory: ${{ inputs.working-directory }}
|
|
run: |
|
|
cargo nextest run --workspace --no-fail-fast --failure-output immediate-final
|