Skip to content

chore(deps): update github-actions #15

chore(deps): update github-actions

chore(deps): update github-actions #15

Workflow file for this run

name: test
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
environment: testing
strategy:
matrix:
python: [3.7, 3.8, 3.9, "3.10"]
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
- name: Setup Python
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4
with:
python-version: ${{ matrix.python }}
- name: Install Tox
run: |
python -m pip install --upgrade pip
pip install tox
- name: Run Tox
# Run tox using the version of Python in `PATH`
run: tox -e py
env:
DSV_CLIENT_ID: ${{ secrets.DSV_CLIENT_ID }}
DSV_CLIENT_SECRET: ${{ secrets.DSV_CLIENT_SECRET }}
DSV_BASE_URL: ${{ secrets.DSV_BASE_URL }}
- uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3
with:
fail_ci_if_error: false