mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-15 13:36:34 +03:00
18 lines
363 B
YAML
18 lines
363 B
YAML
|
name: Build documentation
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ master ]
|
||
|
|
||
|
jobs:
|
||
|
docs:
|
||
|
runs-on: ubuntu-18.04
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: actions/setup-python@v2
|
||
|
- name: install requirements
|
||
|
run: pip install --upgrade pip setuptools wheel
|
||
|
- name: run tests
|
||
|
run: TRAVIS_PYTHON_VERSION=3.6 ./scripts/travis_update_docs.sh
|