mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-10 19:16:34 +03:00
373a7877ba
Drop Travis workflow.
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 }}
|