-
Notifications
You must be signed in to change notification settings - Fork 14
37 lines (31 loc) · 1005 Bytes
/
python-app.yml
File metadata and controls
37 lines (31 loc) · 1005 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# 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.9', '3.10', '3.11', '3.12', '3.13']
runs-on: ${{ matrix.os }}
steps:
- name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}
uses: actions/setup-python@v6
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