Skip to content

Bump urllib3 from 1.26.13 to 1.26.17 #78

Bump urllib3 from 1.26.13 to 1.26.17

Bump urllib3 from 1.26.13 to 1.26.17 #78

name: Build and validate plugin
on:
pull_request:
push:
branches:
- test-build-and-validate-workflow
- main
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: abatilo/[email protected]
- uses: nanasess/setup-chromedriver@v1
- run: poetry install --no-interaction
- run: ./validate-strict.sh
id: tox
- if: always()
id: check-artifacts
run: |
ls -alh
if [[ -f "./webdriver-report/report.json" ]]
then
echo "::set-output name=upload-webdriver-report::true"
fi
if [[ -f "./htmlcov/index.html" ]]
then
echo "::set-output name=upload-coverage-report::true"
fi
- if: always() && steps.check-artifacts.outputs.upload-webdriver-report
uses: actions/upload-artifact@v2
with:
name: web test storyboards for for ${{ github.sha }}
path: ./webdriver-report
- if: always() && steps.check-artifacts.outputs.upload-coverage-report
uses: actions/upload-artifact@v2
with:
name: coverage report for ${{ github.sha }}
path: ./htmlcov