Skip to content

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

doc: fix link to actions in README.rst

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

Workflow file for this run

name: python-shaarli-client CI
on: [push, pull_request]
jobs:
tox:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ['3.6.15', '3.7.17', '3.8.18', '3.9.18']
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