Skip to content

Merge pull request #47 from apiflask/dependabot/github_actions/action… #134

Merge pull request #47 from apiflask/dependabot/github_actions/action…

Merge pull request #47 from apiflask/dependabot/github_actions/action… #134

Workflow file for this run

name: Tests
on:
push:
branches:
- main
- 'v*'
paths-ignore:
- 'docs/**'
- '*.md'
pull_request:
branches:
- main
- 'v*'
paths-ignore:
- 'docs/**'
- '*.md'
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- run: python -m pip install --upgrade pip wheel
- run: pip install tox tox-gh-actions
- run: tox -e style
- run: tox -e docs