Skip to content

doc: fix link to actions in README.rst #24

doc: fix link to actions in README.rst

doc: fix link to actions in README.rst #24

Workflow file for this run

name: python-shaarli-client CI
on: [push, pull_request]
jobs:
tox:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9']
name: python
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install requirements
run: pip install -r requirements/ci.txt
- name: Run tests
env:
TOXENV: py${{ matrix.python-version }}
run: tox