name: Windows on: push: branches: - master pull_request: branches: - master jobs: test_windows: runs-on: Windows-latest strategy: matrix: python-version: ["3.10"] pytorch-version: [1.13.1] defaults: run: shell: bash steps: - uses: actions/checkout@master - uses: actions/cache@v3 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ matrix.pytorch-version }}-${{ hashFiles('**/setup.py') }}-${{ hashFiles('**/Makefile') }} - uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} architecture: 'x64' - name: install dependencies run: | choco install -y wget - name: install espnet env: ESPNET_PYTHON_VERSION: ${{ matrix.python-version }} TH_VERSION: ${{ matrix.pytorch-version }} CHAINER_VERSION: 6.0.0 USE_CONDA: false run: | ./ci/install.sh