forked from Github-Mirrors/canaille
GHA initial setup
This commit is contained in:
parent
93f584b339
commit
bcc46a51a8
1 changed files with 65 additions and 0 deletions
65
.github/workflows/tests.yaml
vendored
Normal file
65
.github/workflows/tests.yaml
vendored
Normal file
|
@ -0,0 +1,65 @@
|
|||
---
|
||||
name: tests
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- '*.x'
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
- '*.x'
|
||||
jobs:
|
||||
tests:
|
||||
name: ${{ matrix.python }}
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
python:
|
||||
- '3.11'
|
||||
- '3.10'
|
||||
- '3.9'
|
||||
- '3.8'
|
||||
- '3.7'
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: ${{ matrix.python }}
|
||||
- uses: actions/cache@v1
|
||||
with:
|
||||
path: ~/.cache/pip
|
||||
key: pip|${{ hashFiles('setup.py') }}|${{ hashFiles('tox.ini') }}
|
||||
- run: pip install tox
|
||||
- run: tox -e py
|
||||
style:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: '3.10'
|
||||
- uses: actions/cache@v1
|
||||
with:
|
||||
path: ~/.cache/pip
|
||||
key: pip|${{ hashFiles('setup.py') }}|${{ hashFiles('tox.ini') }}
|
||||
- uses: actions/cache@v1
|
||||
with:
|
||||
path: ~/.cache/pre-commit
|
||||
key: pre-commit|${{ hashFiles('.pre-commit-config.yaml') }}
|
||||
- run: pip install tox
|
||||
- run: tox -e style
|
||||
doc:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: '3.11'
|
||||
- uses: actions/cache@v1
|
||||
with:
|
||||
path: ~/.cache/pip
|
||||
key: pip|${{ hashFiles('setup.py') }}|${{ hashFiles('tox.ini') }}
|
||||
- run: pip install tox
|
||||
- run: tox -e doc
|
Loading…
Reference in a new issue