chore: check HOME related variable in windows #1088
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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: build | |
on: | |
push: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Set up NodeJS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- name: Install | |
run: pip install tox codecov | |
- name: Echo home | |
run: | |
python -c "import os; print(os.path.expanduser('~')); print(os.environ.get('USERPROFILE')); print(os.environ.get('HOMEPATH')); print(os.environ.get('HOMEDRIVE')); print(os.environ.get('HOME'))" | |
- name: Script | |
run: tox -e py | |
- name: After Success | |
run: codecov |