mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-22 17:06:33 +03:00
5d19c6ef7e
Drop Python version not supported on master. Drop Travis workflow on master branch too.
19 lines
336 B
YAML
19 lines
336 B
YAML
name: Build documentation
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- maint_2_8
|
|
|
|
jobs:
|
|
docs:
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Trigger docs build
|
|
run: ./scripts/travis_update_docs.sh
|
|
env:
|
|
TRAVIS_BRANCH: maint_2_8
|
|
TRAVIS_TOKEN: ${{ secrets.TRAVIS_TOKEN }}
|