filename spec bug #209
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [ push ] | |
jobs: | |
windows_test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ windows-2019 ] | |
name: bisweb-test | |
steps: | |
- name: Environment Setup | |
run: | | |
python --version | |
echo "----------------------------------------------------" | |
echo "git = `which git` `git --version`" | |
echo "python = `which python` `python --version`" | |
echo "python = `which python3` `python3 --version`" | |
echo "node = `which node` `node --version`" | |
echo "----------------------------------------------------" | |
pwd | |
shell: bash |