Clean up alias-related code

This commit is contained in:
Taiki Endo
2025-09-06 01:46:45 +09:00
parent 9d712fde38
commit ed177b998a
3 changed files with 33 additions and 8 deletions

View File

@@ -141,6 +141,26 @@ jobs:
fi
if: matrix.bash != 'cygwin' && matrix.os != 'windows-11-arm'
test-alias:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: taiki-e/checkout-action@v1
# cross attempts to install rust-src when Cargo.toml is available even if `cross --version`
- run: rm -- Cargo.toml
- run: env
- uses: ./
with:
tool: nextest,taplo-cli
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Test bash
run: cargo-nextest nextest --version && taplo --version
shell: bash
- name: Test sh
run: cargo-nextest nextest --version && taplo --version
shell: sh
test-container:
strategy:
fail-fast: false