Skip to content

Ubuntu

Ubuntu #270

Workflow file for this run

name: Ubuntu
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
push:
branches:
- main
pull_request:
types:
- opened
- reopened
- synchronize
jobs:
pytest:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: pip install .[dev]
- name: Pytest
run: pytest tests -rfs -vv
- name: Run
run: md-dead-link-check --all