Skip to content

build(deps): bump pyyaml from 6.0 to 6.0.1 #103

build(deps): bump pyyaml from 6.0 to 6.0.1

build(deps): bump pyyaml from 6.0 to 6.0.1 #103

Workflow file for this run

name: Pull Request
on:
pull_request:
branches: [master]
jobs:
# Test
test:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.8]
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
sudo apt-get install libcurl4-openssl-dev
- uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: pip install tox
- name: Run tests
run: |
tox
- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action@v1
if: always()
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
files: test-results/**/*.xml
- name: Coveralls
uses: AndreMiras/coveralls-python-action@develop
with:
parallel: true
debug: true
coveralls_finish:
needs: test
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: AndreMiras/coveralls-python-action@develop
with:
parallel-finished: true
debug: true