forked from gaugendre/ofx-processor
77 lines
2.1 KiB
YAML
77 lines
2.1 KiB
YAML
name: Test & publish
|
|
|
|
on:
|
|
push:
|
|
release:
|
|
types: [created]
|
|
|
|
jobs:
|
|
build:
|
|
name: Python ${{ matrix.python-version }} / ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
max-parallel: 9
|
|
fail-fast: false
|
|
matrix:
|
|
python-version: [3.7, 3.8]
|
|
os: [ubuntu-latest, windows-latest, macOS-latest]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v1.1.1
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install poetry
|
|
poetry install
|
|
- name: Test with pytest
|
|
run: |
|
|
poetry run coverage run --source=ofx_processor -m pytest --color=yes
|
|
poetry run coverage xml
|
|
- name: Coverage report upload
|
|
uses: actions/upload-artifact@v1
|
|
with:
|
|
name: coverage_${{ matrix.os }}_${{ matrix.python-version }}
|
|
path: coverage.xml
|
|
|
|
sonarCloudTrigger:
|
|
name: SonarCloud Trigger
|
|
needs: build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Download coverage report
|
|
uses: actions/download-artifact@v1
|
|
with:
|
|
name: coverage_ubuntu-latest_3.8
|
|
path: coverage-reports
|
|
- name: SonarCloud Scan
|
|
uses: sonarsource/sonarcloud-github-action@v1.1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
|
|
|
publish:
|
|
name: Publish to PyPI
|
|
runs-on: ubuntu-latest
|
|
needs: build
|
|
if: github.event_name == 'release'
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v1.1.1
|
|
with:
|
|
python-version: '3.8'
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install poetry
|
|
- name: Build and publish
|
|
env:
|
|
PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
|
|
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
|
|
run: |
|
|
poetry publish --build -u $PYPI_USERNAME -p $PYPI_PASSWORD
|