[seaborn-] skip slow imports on every plot after the first plot #2171
Workflow file for this run
This file contains hidden or 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
| name: vdsql-testing | |
| on: | |
| pull_request: | |
| branches: | |
| - stable | |
| - develop | |
| push: | |
| branches: | |
| - stable | |
| - develop | |
| jobs: | |
| run-tests: | |
| strategy: | |
| matrix: | |
| python-version: ["3.10", "3.14"] | |
| runs-on: ubuntu-slim | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Python ${{ matrix.pythonversion }} | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install VisiData | |
| run: make install | |
| - name: Install vdsql | |
| run: pip3 install visidata/apps/vdsql/ | |
| - name: Ensure it starts up | |
| run: vdsql --version | |
| - name: Run tests | |
| run: make test-vdsql |