mirror of
https://github.com/jazzband/django-analytical.git
synced 2026-03-16 22:20:25 +00:00
35 lines
546 B
YAML
35 lines
546 B
YAML
name: Check
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
env:
|
|
- lint
|
|
- format
|
|
- audit
|
|
- package
|
|
- docs
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.12'
|
|
|
|
- name: Install prerequisites
|
|
run: python -m pip install tox
|
|
|
|
- name: Run ${{ matrix.env }}
|
|
run: tox -e ${{ matrix.env }}
|