Skip to content

Pad short secrets

Pad short secrets #19

Workflow file for this run

name: Tests
on:
push:
branches:
- "*"
pull_request:
branches:
- master
workflow_dispatch:
jobs:
tox:
name: Run tests on ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
steps:
- name: Checkout repo
uses: actions/checkout@v1
with:
fetch-depth: 2
- 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
python -m pip install -U tox tox-gh-actions codecov
- name: Test with tox
run: tox
- uses: codecov/codecov-action@v2
with:
fail_ci_if_error: true