Pypi smoke tests #841
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
# This workflow will install tabcmd from pypi and validate that it runs | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Pypi smoke tests | |
# maybe we want this triggered after the publish-pypi workflow? | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: 0 11 * * * # Every day at 11AM UTC (7AM EST) | |
permissions: | |
contents: read | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: ['3.x'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: pip install Tabcmd | |
run: | | |
pip uninstall tabcmd | |
pip install tabcmd | |
- name: Launch app | |
run: | | |
tabcmd -v --language fr | |
tabcmd help |