[DPE-2721] Allow network access for pg_dump, pg_dumpall and pg_restore #49
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
pull_request: | |
workflow_dispatch: | |
workflow_call: | |
jobs: | |
build: | |
name: Build Snap | |
uses: ./.github/workflows/build.yaml | |
smoke: | |
name: Smoke Tests | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/download-artifact@v3 | |
with: | |
name: snap-artifact | |
- name: Install tox | |
run: python3 -m pip install tox | |
- name: Smoke Tests | |
run: tox -e smoke |