[AP-1800] remove counting rows in checking for resync #1165
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
# Workflow to check if all singer connectors are installable | |
name: Singer connectors | |
on: | |
pull_request: | |
branches: [master] | |
workflow_dispatch: | |
concurrency: | |
group: singer-connectors-${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
test_install_connectors: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checking out repo | |
uses: actions/[email protected] | |
- name: Set up Python 3.8 | |
uses: actions/[email protected] | |
with: | |
python-version: '3.8' | |
- name: Check all connectors are installable | |
run: | | |
make all_connectors -e pw_acceptlicenses=y |