Skip to content

Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows #51

Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows

Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows #51

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['2.7', '3.6', '3.7', '3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Install package
run: |
pip install .
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with robotframework
run: |
robot -L TRACE:TRACE --name "Python ${{ matrix.python-version }}" --log 'NONE' --report 'NONE' --output test-results-${{ matrix.python-version }}.xml tests
- name: Upload test results
uses: actions/upload-artifact@v2
with:
name: test-results-py${{ matrix.python-version }}
path: test-results-${{ matrix.python-version }}.xml
retention-days: 2
# Use always() to always run this step to publish test results when there are test failures
if: ${{ always() }}
test_results:
needs: build
runs-on: ubuntu-latest
steps:
- name: Download tests results
uses: actions/[email protected]
- name: install dependencies
run: |
python -m pip install --upgrade pip
pip install -U robotframework
- name: Build test results report
run: |
rebot -x xunit.xml --log log.html --name CSVLibrary test-results-*/test-results-*.xml
- name: Upload combined results
uses: actions/upload-artifact@v2
with:
name: combined-test-results
path: log.html