Run CI-testing on GHA/Windows #212
Workflow file for this run
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
--- | |
name: test & publish | |
on: | |
pull_request: ~ | |
push: | |
branches: | |
- master | |
jobs: | |
test: | |
name: Test python-${{ matrix.python-version }} on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
python-version: [3.7, 3.8, 3.9, '3.10', '3.11'] | |
env: | |
LANG: en_US.UTF-8 | |
LC_ALL: en_US.UTF-8 | |
LANGUAGE: en_US.UTF-8 | |
WINUTF8: 1 | |
steps: | |
- uses: actions/checkout@master | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Set up Java | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pycodestyle unittest-xml-reporting | |
pip install . | |
- name: Adjust Windows PATH | |
if: startsWith(matrix.os, 'win') | |
shell: bash | |
run: | | |
echo "C:\msys64\usr\bin" >> $GITHUB_PATH | |
dir 'C:\msys64\usr\bin' | |
- name: Test | |
shell: bash | |
run: | | |
command -v chcp && chcp 65001 # Set code page to utf-8. | |
python -m xmlrunner discover -v -o test-results/test/ | |
- name: Pycodestyle | |
run: pycodestyle cr8 | |
- name: Upload results to wacklig | |
env: | |
WACKLIG_TOKEN: ${{ secrets.WACKLIG_TOKEN }} | |
run: | | |
curl -s https://raw.githubusercontent.com/pipifein/wacklig-uploader/master/wacklig.py | python - --token $WACKLIG_TOKEN || echo "Upload to wacklig failed" | |
publish: | |
name: Build & publish package to pypi | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Set up python 3.7 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.7 | |
- name: Build package | |
run: | | |
python -m pip install twine wheel | |
python setup.py sdist bdist_wheel | |
twine check dist/*.tar.gz | |
- name: Publish package | |
uses: mfussenegger/gh-action-pypi-publish@63c35b2cc56443d44589efa87a970cc1895ce79a | |
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') | |
with: | |
user: __token__ | |
password: ${{ secrets.pypi }} |